/* Sfondo nero e stile base */
body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

/* Container per il modulo utente */
.container {
    border: 2px solid red;
    padding: 30px;
    background-color: #111;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

/* Titolo principale */
h1 {
    font-size: 3em;
    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;
}

/* Input, textarea e file upload */
input[type="text"],
input[type="file"],
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: none;
    background-color: #222;
    color: white;
}

/* Pulsanti */
button {
    background-color:  rgb(42, 148, 153);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}

button:hover {
    background-color: red;
}

/* Immagine preview */
#preview {
    display: block;
    margin: 10px auto;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Link home */
a {
    display: block;
    text-align: center;
    color: rgb(42, 148, 153);
    margin-top: 10px;
    text-decoration: none;
}

a:hover {
    color: red;
}