/* Reset di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #ff4e50, #f9d423);
    color: white;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

input {
    padding: 5px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
}

button {
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 10px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: rgba(0,0,0,0.9);
    transform: scale(1.05);
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    button, input {
        font-size: 1rem;
    }
}
