/* Styles pour l'authentification */

.auth-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.auth-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
    padding: 40px;
}

.auth-card-large {
    max-width: 650px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    max-width: 120px;
    margin-bottom: 20px;
}

.auth-header h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.auth-header p {
    color: #666;
    font-size: 14px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
}

.auth-form label i {
    margin-right: 8px;
    color: #667eea;
}

.auth-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.auth-form .form-control:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0;
}

.password-toggle:hover {
    color: #667eea;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check-label {
    margin-bottom: 0;
    cursor: pointer;
}

.btn-block {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

.auth-footer {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.auth-footer p {
    margin-bottom: 10px;
    color: #666;
}

.auth-footer a {
    color: #667eea;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.test-accounts {
    margin-top: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    font-size: 13px;
}

.test-accounts h4 {
    color: #666;
    margin-bottom: 10px;
    font-size: 14px;
}

.test-accounts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.test-accounts li {
    padding: 5px 0;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-card {
        padding: 30px 20px;
    }
    
    .auth-card-large {
        max-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-row .col-md-6,
    .form-row .col-md-4,
    .form-row .col-md-8 {
        width: 100%;
        padding: 0;
    }
}