/* Authentication Pages Styles */

.auth-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-card {
    background: linear-gradient(180deg, rgba(44, 36, 22, 0.95) 0%, rgba(28, 22, 14, 0.95) 100%);
    border: 3px solid var(--gold);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 666px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(212, 175, 55, 0.2);
}

.auth-title {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.auth-error {
    background: rgba(244, 67, 54, 0.2);
    border: 2px solid #f44336;
    color: #ffcdd2;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.auth-error ul {
    margin: 0;
    padding-left: 1.5rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

 .form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem;
}
       
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.form-group small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom:9px;
}

.btn-auth {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem;
    border: 2px solid var(--gold-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin-top: 0.5rem;
}

.btn-auth:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-auth:active {
    transform: translateY(0);
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.auth-footer p {
    margin: 0.5rem 0;
}

.auth-link {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-card {
        padding: 1.5rem;
    }

    .auth-title {
        font-size: 1.5rem;
    }
}
