/* Styles pour les pages d'authentification */
body {
    background-color: #1a1f35;
    color: #f5f1e8;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.auth-container {
    background-color: rgba(26, 31, 53, 0.95);
    border: 1px solid #e8747e;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(201, 161, 122, 0.15);
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #f5f1e8;
    font-family: 'Dancing Script', cursive;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #e8747e;
    border-radius: 5px;
    color: #f5f1e8;
    font-size: 16px;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background-color: #e8747e;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-weight: bold;
}

.auth-btn:hover {
    background-color: #d65268;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(232, 116, 126, 0.3);
}

.auth-link {
    text-align: center;
    margin-top: 20px;
}

.auth-link a {
    color: #e8747e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-link a:hover {
    color: #d4b896;
    text-decoration: underline;
}

.error, .errors {
    color: #ff6b6b;
    margin-bottom: 20px;
    padding: 10px;
    background-color: rgba(255, 0, 0, 0.1);
    border-radius: 5px;
}

.success {
    color: #51cf66;
    margin-bottom: 20px;
    padding: 10px;
    background-color: rgba(0, 255, 0, 0.1);
    border-radius: 5px;
}

/* Checkbox styles for Remember Me */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    width: 100%;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    accent-color: #e8747e;
    margin: 0;
    padding: 0;
}

.checkbox-group input[type="checkbox"]:focus {
    outline: 2px solid #e8747e;
    outline-offset: 2px;
}

.checkbox-label {
    color: #f5f1e8;
    font-weight: normal;
    font-size: 14px;
    margin: 0;
    cursor: pointer;
    display: inline;
}