* {
    font-family: 'Inter', Arial, sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/* Styles généraux */
body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

/* Conteneur principal */
.container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Titre */
h1 {
    color: #0044cc;
    text-align: center;
}

/* Styles des champs de formulaire */
.form-group {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

/* Style du bouton */
.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #0044cc;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #0033aa;
}
/* Responsive ajustements */
@media screen and (max-width: 600px) {
    .container {
        margin: 20px;
        padding: 15px;
    }

    h1 {
        font-size: 1.4rem;
    }

    .submit-btn {
        font-size: 1rem;
    }
}

/* Animation douce des champs */
input, textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #0044cc;
    box-shadow: 0 0 5px rgba(0, 68, 204, 0.3);
    outline: none;
}

/* Icônes mieux alignées avec le texte */
label i {
    margin-right: 5px;
    color: #0044cc;
}
