/* Auth Pages CSS */

.auth-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
}

.auth-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.auth-card h1 {
    margin: 0 0 10px 0;
    color: #1a1a2e;
    font-size: 32px;
}

.auth-subtitle {
    color: #666;
    margin: 0 0 30px 0;
    font-size: 16px;
}

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

.auth-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.auth-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.auth-form input:focus {
    outline: none;
    border-color: #4169e1;
}

.auth-form small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 14px;
}

.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
    margin-top: 10px;
}

.auth-footer {
    margin-top: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.auth-footer a {
    color: #4169e1;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}
