

/* style.css */
body {
    font-family: Arial, sans-serif;
}

form {
    width: 300px;
    margin: 0 auto;
}


label {
    display: block;
    margin-bottom: 10px;
}


input[type="text"],
input[type="email"],
input[type="password"] {
    width: 50%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.fxt-btn-fill {
   cursor: pointer;
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    border: 1px solid;
    border-color: #02abf0;
    color: #fff;
    border-radius: 10px;
    background-color: #02abf0;
    padding: 9px 36px;
    width: 50%;
}


/* Styles supplémentaires pour le bouton au survol (hover) */
.fxt-btn-fill:hover {
    background-color: #0056b3; /* Couleur au survol */
}
Dans cet exemple, la couleur d'arrière-plan est définie sur "#007bff" pour le bouton, et "#0056b3" pour le bouton au survol. Vous pouvez modifier ces valeurs pour choisir la couleur qui vous convient. Assurez-vous que la classe "fxt-btn-fill" est correctement appliquée à votre bouton dans le HTML, comme indiqué dans votre code.







input[type="submit"] {
    background-color: #02abf0;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}
