/* =========================================================
   AUTH PAGES (login / register / forgot / reset)
   ========================================================= */

.auth-body {
    background: #f5f5f7;
}

.auth-main {
    padding-top: 96px;
    padding-bottom: 64px;
}

.auth-section {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
}

.auth-container {
    max-width: 480px;
    margin: 0 auto;
}

.auth-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.auth-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 24px;
}

.auth-form .form-group {
    margin-bottom: 18px;
}

.auth-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
}

.auth-form input,
.auth-form select {
    width: 100%;
    padding: 9px 10px;
    border-radius: 8px;
    border: 1px solid #d0d0d5;
    font-size: 0.95rem;
    outline: none;
}

.auth-form input:focus,
.auth-form select:focus {
    border-color: #c59c30;
    box-shadow: 0 0 0 1px rgba(197, 156, 48, 0.25);
}

.auth-message {
    margin-top: 16px;
    font-size: 0.9rem;
    display: none;
}

.auth-message.msg-success {
    color: #166534;
}

.auth-message.msg-error {
    color: #b91c1c;
}

.auth-switch {
    margin-top: 18px;
    font-size: 0.9rem;
    text-align: center;
}

.auth-switch a {
    color: #c59c30;
}

/* Force gold for primary buttons inside auth cards */
.auth-card .btn-primary {
    background: #d4af37 !important;
    color: #ffffff !important;
}

.auth-card .btn-primary:hover {
    background: #b8922e !important;
}
