/* auth.css - Styles for login and signup templates */

:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4cc9f0;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.auth-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 100%;
    max-width: 900px;
}

.auth-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-image h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.auth-image p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.auth-form {
    padding: 40px;
}

.auth-form h3 {
    margin-bottom: 20px;
    font-weight: 600;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .auth-card {
        margin: 1rem;
        border-radius: 8px;
    }
    
    .auth-image,
    .auth-form {
        padding: 2rem;
    }
    
    .auth-image h2 {
        font-size: 2rem;
    }
    
    .auth-image p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .auth-image,
    .auth-form {
        padding: 1.5rem;
    }
    
    .auth-image h2 {
        font-size: 1.75rem;
    }
}
