 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    input[type="email"] {
        width: 300px;
        padding: 10px;
        border: 2px solid #fff;
        border-radius: 5px;
        background-color: rgb(235, 244, 238); /* Fond noir */
        color: rgb(15, 15, 15); /* Texte blanc */
        font-size: 16px;
        outline: none;
        text-align: center;
        margin-top: 10px;
    }
    
    input[type="email"]::placeholder {
        color: #2d3c87; /* Texte du placeholder en gris */
    }
    
    button {
        margin-top: 10px;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        background-color: rgb(48, 151, 48);
        color: white;
        font-size: 16px;
        cursor: pointer;
    }
    
    button:hover {
        background-color: darkgreen;
    }
    
}