/* styles.css */

/* Réinitialisation des styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Style du corps de la page */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    background-image: url("../../images/logo.jpg");
    background-repeat: no-repeat;
    background-size: 500px;
    background-position: left;
    margin: 0;
}

/* Conteneur du formulaire */
.row {
    position: relative;
    background-color:rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 720px;
    width: 100%;
    box-sizing: border-box;
    
}

/* Style du titre */
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}
/* message alerte */
.alert{
    text-align: center;
}
.btn{
    width: 100%;
}
/* Style des groupes de champs du formulaire */
.form-group {
    margin-bottom: 15px;
}

/* Style des labels */
.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

/* Style des champs de saisie */
.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
    
}

/* Style du bouton d'inscription */
.btn-inscription {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
}

.btn-inscription:hover {
    background-color: #0056b3;
}

.form-group1{
    text-align: right;
}
.form-group1 a{
    text-decoration: none;
    background-color: red;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
}