body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 500px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #444;
    text-align: left;
}

textarea {
    width: 90%;
    height: 150px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: none;
    font-size: 14px;
}

button {
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #6a11cb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #4e0fa6;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    textarea {
        height: 120px;
    }

    .box-lista {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    max-height: 350px;
    overflow-y: auto;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

}
