body.auth-page {
    background: #000 url(../img/loginBG.png) !important;
}

.authentication {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    color: #1f5b7e;
}

.authentication > div {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

.authentication .content-container {
    display: flex;
    margin-top: 20px;
}

.authentication .left-section {
    flex: 0 0 378px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.authentication .right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: min(70px, max(10px, calc(10px + (100vw - 780px))));
}

.authentication .notification-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.authentication #logo {
    background: transparent url(../img/loginSprite_1.0.png) no-repeat -20px -30px;
    text-indent: -999em;
    letter-spacing: -999em;
    overflow: hidden;
    width: 378px;
    height: 315px;
    display: block;
    margin: 0 auto;
}

.authentication p,
.authentication a {
    font-size: 1.1em;
}

.authentication .otherLinks a {
    text-decoration: none;
    color: #0298ee;
    transition: color .4s ease-out;
}

.authentication .otherLinks a:hover {
    color: #fff;
}

.authentication form {
    width: 330px;
}

.authentication label {
    display: block;
    text-transform: uppercase;
    margin: 10px 0 6px 20px;
    font-size: 1.6em;
    font-family: "prime", sans-serif;
}

.authentication .inputWrapper input {
    background: transparent url(../img/loginSprite_1.0.png) no-repeat -60px -360px !important;
    width: 300px;
    padding: 0 15px;
    height: 35px;
    margin: 0 0 10px 0;
    border: 0;
    outline: 0;
    color: #0298ee;
    opacity: .6;
    transition: opacity .2s ease-out;
}

.authentication .inputWrapper input:focus {
    color: #fff;
    opacity: 1;
}

.authentication .submitWrapper .btn {
    margin: 0;
}

.authentication .submitWrapper {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    clear: both;
}

.authentication .otherLinks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.authentication .otherLinks a {
    clear: none;
    float: none;
    display: inline-block;
}

.authentication #footer {
    text-align: center;
    margin-top: 10px;
    color: #1f5b7e;
    font-size: 1.1em;
}

.authentication #topLinks {
    margin-top: 15px;
    text-align: right;
}

.authentication #topLinks a {
    display: inline-block;
    width: 20px;
    font-size: 16px;
    cursor: pointer;
}

.authentication #topLinks a:not(.active):hover {
    text-shadow: 0 0 10px #9fc4d8;
}

.authentication #topLinks a.active {
    text-shadow: 0 0 6px #fff;
    cursor: not-allowed;
}

.authentication .terms-acceptance {
    padding-left: 12px;
}

.authentication .terms-label {
    color: #2b7cab;
    flex: 1;
    font: 12px sans-serif;
    line-height: 1.6;
    display: inline-block;
    margin-left: 5px;
    text-transform: none;
    margin-top: 2px;
}

.authentication .terms-link {
    color: #4a9eff;
    text-decoration: none;
    border-bottom: 1px solid #4a9eff;
    transition: all 0.3s ease;
    font-size: 12px;
    text-transform: uppercase;
}

.authentication .terms-link:hover {
    color: #5aa9ff;
    border-bottom-color: #5aa9ff;
}

.authentication .error-message,
.authentication .success-message,
.authentication .warning-message {
    width: 100%;
    margin-bottom: 15px;
}