/* Stile generale della form di checkout */
body.pmpro-checkout .pmpro_form {
    background-color: #f9f9f9; /* Sfondo chiaro */
    border: 1px solid #ddd; /* Bordo sottile */
    padding: 20px; /* Spaziatura interna */
    border-radius: 5px; /* Angoli arrotondati */
}

/* Stile dei campi di input */
body.pmpro-checkout input[type="text"],
body.pmpro-checkout input[type="email"],
body.pmpro-checkout input[type="password"],
body.pmpro-checkout select {
    width: 100%; /* Larghezza completa */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
}

/* Stile del pulsante di invio */
body.pmpro-checkout input[type="submit"] {
    background-color: #0073aa; /* Colore blu */
    color: #fff; /* Testo bianco */
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

body.pmpro-checkout input[type="submit"]:hover {
    background-color: #005177; /* Blu più scuro al passaggio del mouse */
}