/* AUTH PAGES CSS */

.auth-page {
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px;
    /* Account for navbar */
    margin-top: -80px;
    /* Offset navbar height if it's sticky/fixed */
}

/* Dark Overlay */
.auth-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.auth-container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px;
    text-align: center;
    border-top: 4px solid #8b5e3c;
}

.auth-logo {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: #333;
}

.auth-logo span {
    color: #8b5e3c;
    font-weight: 700;
}

.auth-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* Forms */
.auth-form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.auth-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #444;
    font-weight: 500;
    font-size: 0.95rem;
}

.auth-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f9f9f9;
}

.auth-input:focus {
    border-color: #8b5e3c;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.1);
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.auth-link {
    color: #8b5e3c;
    text-decoration: none;
    transition: color 0.2s;
}

.auth-link:hover {
    color: #6d4a2f;
    text-decoration: underline;
}

.btn-auth {
    width: 100%;
    padding: 14px;
    background-color: #8b5e3c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-auth:hover {
    background-color: #6d4a2f;
}

.auth-footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
}

/* Error Messages */
.input-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}