.auth-page {
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(160deg, rgb(var(--body-bg-rgb, 249, 251, 251)) 0%, #fff 45%, rgba(var(--primary-rgb, 56, 202, 179), 0.08) 100%);
}

.auth-page__main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--custom-white, #fff);
    border: 1px solid var(--default-border, #ededf5);
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.06);
    padding: 2rem 2rem 1.75rem;
}

.auth-card__logo {
    display: block;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.auth-card__logo img {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.auth-card__title {
    font-size: 1.375rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.25rem;
    color: var(--default-text-color, #333);
}

.auth-card__subtitle {
    text-align: center;
    color: var(--menu-prime-color, #7b8191);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.auth-card .btn-primary {
    background-color: rgb(var(--primary-rgb, 56, 202, 179)) !important;
    border-color: rgb(var(--primary-rgb, 56, 202, 179)) !important;
}

.auth-card .btn-primary:hover {
    filter: brightness(0.95);
}

.auth-card__footer {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.875rem;
}

.auth-card__footer a {
    color: rgb(var(--primary-rgb, 56, 202, 179));
    text-decoration: none;
}

.auth-card__footer a:hover {
    text-decoration: underline;
}

.auth-forgot-link {
    font-size: 0.8125rem;
    color: rgb(var(--primary-rgb, 56, 202, 179));
    text-decoration: none;
}

    .auth-forgot-link:hover {
        text-decoration: underline;
    }