.form form {
    display: flex;
    flex-direction: column;
    width: 100%; /* Ensures the form takes the full width of its container */
    max-width: 400px; /* Optional: limit the width of the form */
    margin: 0 auto; /* Centers the form horizontally */
    gap: 15px; /* Adds spacing between form fields */
}

input, textarea, button {
    width: 100%; /* Make form elements take the full width */
    padding: 10px;
    font-size: 16px;
}

textarea {
    resize: vertical; /* Optional: Allows the textarea to resize vertically */
}

button {
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}