* {
    box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
}

#login {
	color: #fff;
    background-color: #000;
	background: url('/media/auth/imgs/background-image.png') no-repeat center;
	background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
    position: relative;
    overflow: hidden;
    font-family: "Inter", sans-serif;
}

.login-box {
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.login-box h2 {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 9px;
    margin-top: 0px;
}

.login-box p {
	margin-bottom: 28px;
    color: #CCCCCC;
}

#logo {
    margin-bottom: 125px;
    height: 47px;
}

#login form {
    width: 100%;
}

#login .input {
    background: #fff;
    border: 1px solid transparent!important;
    border-radius: 8px;
    font-size: 16px;
    height: 52px;
    margin-bottom: 15px;
    padding: 14px;
    width: 100%;
}

#login #submit, #login .login-lostpw {
    background: #62A0C1;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 1.3px;
    line-height: 24px;
    margin-bottom: 34px;
    margin-top: 18px;
    padding: 16px;
    text-transform: uppercase;
    width: 100%;
}

#login #submit:hover {
    background: #1B7A97;
}

#login .login-lostpw {
    display: inline-block;
}

#login div.warning-box {
    padding-top: 20px;
    width: 400px;
    margin: auto;
    position: fixed;
    bottom: 0;
}

#login .warning {
    background: #dd6666;
    padding: 10px;
    border: 2px solid #ff6666;
    color: #660000;
}

#login a {
    border: none;
    color: #CCCCCC;
    text-decoration: none;
    transition: 0.3s all;
}

#login a:hover {
    opacity: 0.7;
}






.logo-section {
    position: absolute;
    display: flex;
    top: 100px;
}

.login-wrapper {
    display: flex;
    width: 100%;
    align-items: center;
    align-content: center;
    flex-direction: column;
}

.error-message {
    color: #181818!important;
    border: 1px solid #EA585F;
    background: #FBF2F2;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: left;
    font-size: 16px;
}

.separator {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.separator:before {
    content: "";
    width: 1px;
    height: calc(50% - 30px);
    top: 0;
    background: rgba(255, 255, 255, 1);
    position: absolute;
}

.separator:after {
    content: "";
    width: 1px;
    height: calc(50% - 30px);
    bottom: 0;
    background: rgba(255, 255, 255, 1);
    position: absolute;
}

.separator span {
    color: #ccc;
    font-size: 16px;
    background: transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.has_buttons .login-box {
    display: flex;
    max-width: inherit;
    align-items: center;
    justify-content: center;
}

.has_buttons .logo-section {
    position: relative;
    top: unset;
}


.has_buttons .login-wrapper, .login_buttons_wrapper {
    width: 460px;
}

.has_buttons #logo {
    width: 205px;
    margin-bottom: 45px;
}

.login_buttons_wrapper ul {
    margin: 0 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0 0!important;
}

.login_buttons_wrapper ul li {
    width: 100%;
    list-style: none;
}

.login_buttons_wrapper ul li a {
    width: 100% !important;
    border: 1px solid transparent !important;
    border-radius: 8px;
    background: #FFFFFF !important;
    color: #181818!important;
    font-size: 18px;
    font-weight: 500;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 15px 0;
}

.login_buttons_wrapper ul li a img {
    margin-right: 8px;
}

.login_buttons_wrapper a:hover {
    background: #f9f9f9 !important;
    border-color: #d8d8d8 !important;
    opacity: 1!important;
}

@media screen and (max-height: 700px) {
    #login:not(.has_buttons) .logo-section {
        position: relative;
        top: unset;
        margin-bottom: 25px;
    }
    #login:not(.has_buttons) #logo {
        margin-bottom: 50px;
    }
}