/*-----------------------------------
    //   Fichier : client.css
    //   Par:      Anthony Grenier
    //   Date :    2025-4-06
    //----------------------------------- */
.div-form{
    padding: 50px 50px;
}
.section-form{
    padding: 5px 0px;
    width: 1800px;
}
.div-log-in{
    padding: 50px 50px;
}
.erreur{
    width: 1000px;
    color: red;
}
.selecteur{
    width: 200;
}
.spacerClient{
    height: 25px;
}
.container-form {
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.form-container {
    background-color: #1f2022;
    border-radius: 8px;
    padding: 3rem;
    width: 100%;
    max-width: 600px;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;color: white;
}
.titre-form{
    color: white;
}
.form-group .form-control {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ced4da;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border 0.3s ease;
}
.confirmation-form{
    color: white;
}
.form-group .form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.error-message {
    color: red;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.btn-form {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    background-color: #696b6d;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-form:hover {
    background-color: #e7e7e7;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
}
