/* Reset e layout principale */
* { box-sizing: border-box; }
body { 
    background: radial-gradient(circle at center, #0a192f 0%, #020205 100%); 
    font-family: 'Segoe UI', Arial, sans-serif; 
    color: #e6f1ff; 
    display: flex; 
    flex-direction: column; 
    align-items: center;    /* Centra tutto orizzontalmente */
    min-height: 100vh; 
    margin: 0; 
    padding: 20px;         /* Aggiunge respiro ai lati su mobile */
}

.container { 
    width: 100%;           /* Occupa tutto lo spazio disponibile */
    max-width: 800px;      /* Aumentato per leggere meglio la Privacy */
    background: rgba(10, 25, 47, 0.7); 
    padding: 40px; 
    border-radius: 20px; 
    border: 1px solid rgba(0, 243, 255, 0.3);
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: left;      /* Il testo lungo si legge meglio allineato a sinistra */
}

h2 { 
    color: #00f3ff; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-bottom: 30px; 
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.5); 
}

/* Input Futuristi */
input[type="text"], input[type="email"], input[type="password"] { 
    width: 100%; 
    padding: 15px; 
    margin: 10px 0; 
    border-radius: 10px; 
    border: 1px solid #1a3a5d; 
    background: rgba(0, 0, 0, 0.3); 
    color: #fff; 
    transition: 0.3s;
}

input:focus { 
    border-color: #00f3ff; 
    outline: none; 
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2); 
}

/* Bottone stile "Power-Up" */
button { 
    width: 100%; 
    padding: 15px; 
    margin-top: 10px;
    background: linear-gradient(90deg, #00f3ff, #0099ff); 
    border: none; 
    border-radius: 10px; 
    font-weight: bold; 
    cursor: pointer; 
    color: #000; 
    text-transform: uppercase;
    transition: 0.3s; 
}

button:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.4); 
}

/* Link e Checkbox */
.checkbox-group { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin: 20px 0; 
    text-align: left; 
    font-size: 0.85rem; 
    color: #8892b0; 
}

a { color: #00f3ff; text-decoration: none; transition: 0.3s; margin-top: 10px; display: block; }
a:hover { color: #fff; text-shadow: 0 0 5px #00f3ff; }
.footer {
    width: 100%;
    text-align: center;
    padding: 30px;
    background: rgba(0,0,0,0.2);
    margin-top: auto; /* Forza il footer in fondo */
}


.footer a {
    display: inline-block;
    margin: 0 10px;
    color: #00f3ff;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-shadow: 0 0 5px #00f3ff;
}