.general-error{
    color: red;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: -5px;
}

/* Styles pour les messages d'erreur de formulaire */
.form-error-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.form-error-message {
    color: #dc3545;
    font-size: 14px;
    line-height: 1.6;
    padding: 10px 15px;
    background-color: #ffe6e6;
    border: 2px solid #dc3545;
    border-left: 5px solid #dc3545;
    font-weight: bold;
    border-radius: 4px;
    display: block;
}

.form-error-message + .form-error-message {
    margin-top: 8px;
}

/* Styles pour les champs avec erreur - bordure rouge */
.form-group.has-error .form-control {
    border: 3px solid #dc3545;
    background-color: rgba(220, 53, 69, 0.08);
}

.form-group.has-error .form-control:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.3rem rgba(220, 53, 69, 0.35);
    outline: none;
}
