body {
    background: #f5f7fb;
}

.auth-page {
    min-height: 100vh;
}

.auth-logo {
    text-decoration: none;
}

.auth-logo img {
    width: 190px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.password-field .form-control {
    padding-left: 3rem;
}

.password-toggle {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    width: 2rem;
    height: 2rem;
    border: 0;
    background: transparent;
    transform: translateY(-50%);
    line-height: 1;
}

.auth-captcha {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.auth-captcha img {
    width: 150px;
    height: 52px;
    border: 1px solid var(--ds-border-color);
    border-radius: var(--ds-border-radius);
    background: #fff;
}

.auth-dashboard-logo {
    width: 84px;
    height: 84px;
    object-fit: contain;
}

@media (max-width: 575.98px) {
    .auth-page {
        min-height: auto;
        padding: 2rem 0;
    }

    .auth-page .container {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .auth-page .card-body {
        padding: 1.5rem !important;
    }

    .auth-logo img {
        width: 160px;
    }

    .auth-captcha {
        align-items: stretch;
        flex-direction: column;
    }

    .auth-captcha img {
        width: 100%;
        max-width: 220px;
    }
}
