body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 400px;
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    margin-top: 15px;
    padding: 12px 20px;
    background-color: #d32f2f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

button:hover {
    background-color: #b71c1c;
}

/* Media Query per schermi piccoli */
@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    input, textarea {
        font-size: 14px;
    }

    button {
        font-size: 14px;
    }
}
h1 {
    font-size: 28px;
    color: #d32f2f;
    margin-bottom: 10px;
    font-weight: bold;
}

p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}
