/* Stile di base per il corpo della pagina */
body {
    background-color: #000; /* Sfondo nero */
    color: white; /* Testo bianco */
    font-family: Arial, sans-serif; /* Font di base */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

/* Stile per il titolo */
h1 {
    font-size: 5em;
    font-weight: bold;
    background: linear-gradient(to right, rgb(42, 148, 153), rgb(128, 0, 0)); /* Gradiente da rosso a viola */
    -webkit-background-clip: text; /* Applicato solo al testo */
    background-clip: text; /* Applicato solo al testo */
    color: transparent; /* Rende il testo trasparente per vedere il gradiente */
    margin-bottom: 0.5em;
}

/* Stile per i link */
a {
    color: rgb(87, 190, 197);
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 10px;
}

/* Hover per i link */
a:hover {
    color: #ff0000;
}

/* Stile per i bottoni */
input[type="submit"], button {
    background-color: rgb(42, 148, 153);
    color: white;
    padding: 12px 20px;
    font-size: 1.1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 15px auto;
}


/* Hover per i bottoni */
input[type="submit"]:hover, button:hover {
    background-color: rgb(255, 1, 1);
}

/* Effetto per il bottone quando premuto */
input[type="submit"]:active, button:active {
    background-color: rgb(255, 0, 0); 
}

/* Stile per gli input e textarea */
input[type="text"], input[type="email"], input[type="password"], input[type="file"], input[type="date"], textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #333;
    color: white;
    font-size: 1em;
    margin-bottom: 10px;
}

/* Stile per la textarea */
textarea {
    resize: vertical;
}

/* Stile per la zona di output */
#risultato {
    margin-top: 20px;
    text-align: center;
    color: white;
    font-size: 1.1em;
}