/* Reset de base */





*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
 
  
/* Style du corps */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f6f7fa;
    
}

/* Conteneur du formulaire */
.form-section {
    flex-direction: column;
    background: linear-gradient(to bottom, hwb(220 96% 1% / 0.5), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    padding: 40px 20px 20px 20px;
    border-radius: 40px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-inline: 5px;
}

/* Titre */
h2 {
    color: #111111;
    margin-bottom: 20px;
    font-size: 30px;
}

/* Champs du formulaire */
input[type="text"],
input[type="password"] {
    width: 100%;
    height: 60px;
    padding: 12px;
    margin: 10px 0;
    border: none;
    outline: none;
    border-radius: 50px;
    font-size: 16px;
    background: rgba(217, 225, 240, 0.5);
    color: #363636;
    text-align: left;
    transition: 0.3s ease-in-out;
    padding-inline: 20px;
}

/* Effet au focus */
input[type="text"]:focus,
input[type="password"]:focus {
    background: rgba(191, 201, 241, 0.516);
}

/* Placeholder stylé */
input::placeholder {
    color: rgba(95, 95, 95, 0.7);
}

/* Bouton de soumission */
input[type="submit"] {
    width: 100%;
    font-family: "Mulish", sans-serif;
    font-weight: 580;
    border-radius: 50px;
    padding: 20px 30px;
    background-color: #2b3990;
    color: white;
    user-select: none;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    margin-top: 20PX;
    font-size: 18px;
}

/* Effet hover sur le bouton */
input[type="submit"]:hover {
    background-color: #1d2b85;
    box-shadow: inset 0 0 10px hsla(0, 0%, 0%, 0.411);
}

/* Style des labels */
label {
    display: block;
    color: #1f1f20;
    font-size: 16px;
    margin-top: 10px;
}
