.container {
    max-width: 700px; /* Adjust the width of the container */
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    max-width: 600px; /* Adjust the width of the form */
    margin: 0 auto; /* Center the form within the container */
}


h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px; /* Adjust margin as needed */
}

.form-group {
    flex-basis: 100%; /* Occupy full width */
    margin-bottom: 20px;
}

label {
    display: inline-block;
    width: 100px; /* Adjust the width for all labels */
    text-align: left;
    margin-right: 10px; /* Add some space between label and input */
}

textarea {
    display: block;
    width: calc(100% - 110px); /* Adjust width as needed */
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 2px solid #ccc;
    resize: none !important ;
    margin-bottom: 10px; /* Adjust margin as needed */
}

button {
    display: inline-block;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    margin-left: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #0062cc;
}
