body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
}

form {
    width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

textarea {
    height: 150px; /* Ajuste conforme necessário */
    resize: vertical; /* Permite redimensionamento vertical */
}

input, textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background: blue;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
