/* Auth Pages CSS */

:root {
    --primary-color: #4A6FDC;
    --secondary-color: #3558B6;
    --success-color: #37C6AB;
    --danger-color: #FF5370;
    --warning-color: #FFB64D;
    --info-color: #4FC3F7;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fb;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.auth-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    color: var(--primary-color);
}

.auth-logo h2 {
    margin: 0;
    font-weight: 700;
}

.auth-header h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.auth-header p {
    color: #666;
    margin-bottom: 0;
}

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

.form-label {
    font-weight: 500;
    color: #555;
}

.form-control {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(74, 111, 220, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.auth-footer p {
    margin-bottom: 0;
    color: #666;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.auth-footer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.toggle-password {
    cursor: pointer;
}

.form-text {
    font-size: 0.85rem;
    color: #666;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.form-check-label a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 576px) {
    .auth-card {
        padding: 20px;
    }
    
    .auth-header h1 {
        font-size: 1.5rem;
    }
}
