body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

h3 {
    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;
}

form {
    border: 2px solid red;
    padding: 30px;
    background-color: #111;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    min-width: 300px;
}


label, input {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

button {
    background-color: purple;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}
button:hover {
    background-color: red;
}