﻿.auth-page {
    min-height: calc(100vh - 140px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 38px 16px;
}

.auth-card {
    width: 100%;
    max-width: 470px;
    background: rgba(255,255,255,.92);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(36,21,13,.14);
}

.auth-brand {
    text-align: center;
    margin-bottom: 18px;
    font-weight: 900;
    color: #24150d;
}

.auth-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 10px;
    border-radius: 18px;
    background: #24150d;
    color: #d5974a;
    display: grid;
    place-items: center;
    font-size: 26px;
}

.auth-brand span {
    display: block;
    font-size: 28px;
}

.auth-brand small {
    color: #9b6b3d;
    letter-spacing: 6px;
    font-size: 12px;
}

.auth-card h1 {
    text-align: center;
    font-weight: 900;
    margin-bottom: 6px;
}

.auth-subtitle {
    text-align: center;
    color: #806b5a;
    margin-bottom: 26px;
}

.auth-card label {
    font-weight: 800;
    color: #4b2e1f;
    margin-bottom: 6px;
    margin-top: 14px;
}

.auth-input {
    width: 100%;
    border: 1px solid #eadfce;
    background: #fbf7f0;
    border-radius: 16px;
    padding: 13px 15px;
    outline: none;
}

    .auth-input:focus {
        border-color: #d5974a;
        box-shadow: 0 0 0 4px rgba(213,151,74,.16);
    }

.auth-button {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 14px 18px;
    margin-top: 24px;
    background: #24150d;
    color: white;
    font-weight: 900;
}












.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
    font-size: 14px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    color: #6f5745;
    font-weight: 700 !important;
}

.auth-options a,
.auth-footer-link a {
    color: #9b6b3d;
    font-weight: 900;
    text-decoration: none;
}

.auth-footer-link {
    text-align: center;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #eadfce;
    color: #7a6658;
}

    .auth-footer-link span {
        display: block;
        margin-bottom: 6px;
    }







.password-info {
    margin-top: 10px;
    margin-bottom: 18px;
    padding: 12px 15px;
    background: #f7f7f7;
    border-left: 4px solid #8B5E3C;
    border-radius: 8px;
    font-size: .9rem;
    color: #555;
}

    .password-info strong {
        display: block;
        margin-bottom: 8px;
        color: #333;
    }

    .password-info ul {
        margin: 0;
        padding-left: 18px;
    }

    .password-info li {
        margin-bottom: 4px;
    }