body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom right, #4CAF50, #FFD700);
    margin: 0;
    padding: 0;
    color: #333;
}

/* Centrer le formulaire */
form {
    max-width: 500px;
    margin: 80px auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Titre */
h1 {
    text-align: center;
    color: #eef1ee;
    margin-top: 50px;
    font-size: 2em;
}

/* Labels */
label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

/* Champs texte / email / number / select */
input[type="text"],
input[type="email"],
input[type="number"],
select {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1em;
    box-sizing: border-box;
}

/* Bouton */
button {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    background-color: #FFD700;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #4CAF50;
    color: #fff;
}

/* Responsive */
@media(max-width: 640px){
    form {
        margin: 40px 20px;
        padding: 25px;
    }
    h1 {
        font-size: 1.8em;
    }
}



/* Logo */
.logo-top {
    height: 60px;
}

/* Responsive */
@media(max-width: 640px){
    .logo-top {
        height: 45px;
    }
}

/* Barre supérieure commune */
.top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between; /* logo à gauche, lien à droite */
    align-items: center;
    padding: 15px 40px;
    box-sizing: border-box;
}

