/* Sfondo nero per tutto il sito */
body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container con bordo rosso */
.container {
    border: 2px solid red;
    background-color: #111;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    text-align: center;
}

/* Titoli */
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;
}

h6 {
    font-size: 1em;
    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 ID */
input[type="text"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #222;
    color: white;
    margin-bottom: 20px;
}

/* Bottone viola con hover rosso */
button {
    background-color: rgb(47, 156, 172);
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: red;
}

/* Link HOME */
a {
    display: inline-block;
    margin-top: 20px;
    color: rgb(47, 156, 172);
    text-decoration: none;
}

a:hover {
    color: red;
}