/* Minimal auth-only adjustments. Keep the original auth.css visual design intact. */
.auth-header__inner--centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-panel--login .auth-secondary-links--login {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.auth-panel--login .auth-secondary-links--login .auth-link {
    min-height: 36px;
}

.auth-panel--login .auth-help-action--secondary.w-100 {
    margin-top: 16px !important;
    width: 100%;
}

/* Login-only field treatment based on the supplied reference. */
.auth-panel--login .login-field {
    margin-bottom: 16px;
}

.auth-panel--login .login-control {
    position: relative;
}

.auth-panel--login .login-control__input {
    width: 100%;
    height: 66px;
    min-height: 66px;
    padding: 26px 44px 10px 15px;
    border: 1px solid #737d99;
    border-radius: 6px;
    background: #fff;
    color: #172033;
    font-size: 16px;
    line-height: 1.25;
    box-shadow: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.auth-panel--login .login-control__input:focus {
    outline: none;
    border-color: #1677f0;
    box-shadow: 0 0 0 2px #1677f0;
}

.auth-panel--login .login-control__label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    color: #667085;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    pointer-events: none;
    transition: top .14s ease, transform .14s ease, font-size .14s ease, color .14s ease;
}

.auth-panel--login .login-control__input:focus + .login-control__label,
.auth-panel--login .login-control__input:not(:placeholder-shown) + .login-control__label {
    top: 12px;
    transform: none;
    color: #071629;
    font-size: 12px;
}

.auth-panel--login .login-control--password .login-control__input {
    padding-right: 56px;
}

/* Edge/IE can add a native password reveal icon. Roboloan already provides its own toggle,
   so hide the browser-native control to ensure only one eye icon appears. */
.auth-panel--login .login-control--password .login-control__input::-ms-reveal,
.auth-panel--login .login-control--password .login-control__input::-ms-clear {
    display: none;
}

.auth-panel--login .login-password-toggle {
    position: absolute;
    top: 50%;
    right: 11px;
    width: 36px;
    height: 36px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #6e7894;
    padding: 6px;
    cursor: pointer;
}

.auth-panel--login .login-password-toggle:hover,
.auth-panel--login .login-password-toggle:focus {
    color: #245ea8;
    outline: none;
}

.auth-panel--login .login-eye {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.auth-panel--login .login-eye--visible { display: none; }
.auth-panel--login .login-password-toggle[aria-pressed="true"] .login-eye--hidden { display: none; }
.auth-panel--login .login-password-toggle[aria-pressed="true"] .login-eye--visible { display: block; }

@media (max-width: 575.98px) {
    .auth-header__inner--centered {
        justify-content: center;
    }

    .auth-panel--login .auth-secondary-links--login {
        display: grid;
        gap: 4px;
    }

    .auth-panel--login .login-control__input {
        height: 64px;
        min-height: 64px;
        font-size: 16px;
    }
}
