/* Authentication Page Styles */

.auth-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.auth-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.auth-card h2 {
    color: var(--primary-color);
    font-family: 'Philosopher', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.auth-card label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.auth-card input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
}

.auth-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.auth-switch a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-switch a:hover {
    color: var(--accent-color);
}

.info-box {
    background: linear-gradient(135deg, rgba(255, 215, 102, 0.95) 0%, rgba(218, 165, 32, 0.95) 100%);
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--secondary-color);
}

.info-box h3 {
    color: #5d3a1a;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.info-box ul li {
    padding: 10px 0;
    color: #3e2723;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
}

.price-info {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
}

.price {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price strong {
    font-size: 2rem;
    color: var(--accent-color);
}

.price-note {
    font-size: 0.9rem;
    color: #666;
}

.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #c62828;
}

.success-message {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #2e7d32;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
    }
    
    .auth-card {
        padding: 25px;
    }
}

