body {
    margin: 0;
    background: #0e141b;
    color: white;
    font-family: Arial, sans-serif;
}

/* Centrage */
form {
    width: 300px;
    margin: 100px auto;
    background: #1b2838;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Titre */
h2 {
    text-align: center;
    margin-top: 50px;
}

/* Inputs */
input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

/* Bouton */
button {
    width: 100%;
    padding: 10px;
    background: #66c0f4;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #417a9b;
}

/* Lien */
a {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #66c0f4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}