
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Contenitore principale */
.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container del form */
.form-container {
    background-color: #2c2626;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #ffffff;
}


/* Caselle di input */
.input-container {
    margin-bottom: 15px;
    text-align: left;
}

.input-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.input-container input {
    width: 100%;
    padding: 10px;
    border: 3px solid #7f4dff;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.input-container input:focus {
    border-color: #5e35b1;
}

/* Pulsante di invio */
button {
    background-color: #880085;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

button:hover {
    background-color: #b13535;
}


h3 {
    margin-bottom: 10px;
    font-size: 15px;
    color: #ffffff;
}

h4 {
font-family: 'Courier New', monospace;
  font-size: 50px;
  color: transparent; /* Rende il testo trasparente per il gradiente */
  background: linear-gradient(to right, red, purple); /* Gradiente dal rosso al viola */
  background-clip: text; /* Clippa il gradiente sul testo */
  -webkit-background-clip: text; /* Per compatibilità con browser WebKit */
  display: inline-block;
}
