﻿/* =========================
   AUTH (LOGIN / REGISTER)
   ========================= */

.auth-wrap {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.05);
}

    /* Title */
    .auth-card h1 {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 6px;
        color: #0f172a;
    }

    .auth-card .auth-sub {
        font-size: 14px;
        color: #64748b;
        margin-bottom: 22px;
    }

    /* Inputs */
    .auth-card .form-label {
        font-size: 13px;
        font-weight: 600;
        color: #334155;
    }

    .auth-card .form-control {
        border-radius: 12px;
        padding: 10px 14px;
        font-size: 14px;
        border: 1px solid #e2e8f0;
        transition: all 0.2s ease;
    }

        .auth-card .form-control:focus {
            border-color: #0f172a;
            box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
        }

    /* Checkbox */
    .auth-card .form-check {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .auth-card .form-check-input {
        border-radius: 6px;
        cursor: pointer;
    }

    .auth-card .form-check-label {
        font-size: 14px;
        color: #475569;
        cursor: pointer;
    }

    /* Button */
    .auth-card .btn-premium {
        width: 100%;
        margin-top: 12px;
        padding: 12px;
        border-radius: 14px;
        font-weight: 600;
        font-size: 15px;
    }

    /* Validation */
    .auth-card .text-danger {
        font-size: 12px;
        margin-top: 4px;
    }

/* Footer links */
.auth-footer {
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

    .auth-footer a {
        color: #0f172a;
        font-weight: 600;
        text-decoration: none;
    }

        .auth-footer a:hover {
            text-decoration: underline;
        }

/* Mobile */
@media (max-width: 480px) {
    .auth-card {
        padding: 26px 20px;
        border-radius: 16px;
    }

        .auth-card h1 {
            font-size: 24px;
        }
}
