

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
}

form {
    max-width: 90%;
    margin: 0 auto;
}

label {
    display: block;
    margin-bottom: 8px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #701400;
    color: #fff;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #701400;
}

 textarea {
    width: 100%; /* Set the width to 100% of its container */
    padding: 8px; /* Adjust padding for better appearance */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    resize: vertical; /* Allow vertical resizing */
  }