body {

    color: #333;
    display: flex;
    flex-direction:column;
}
main{
    margin:5px 0px;
        display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure the main takes full width */
}

.form-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    background-color: #fff;
    padding: 20px;
    width: 100%; /* Ensure the form container takes full width */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    /*min-height:500px;*/
}

form {
    width: 100%; /* Set form width to fill the container */
    padding: 10px;
    background-color:white;
}
h3,form > label, input, textarea, div{
    background-color:white;
}

h3 {
    text-align: center;
}

label {
    display: block;
    padding: 20px 0 5px 0;
    font-weight:bold;
}

input, textarea {
    width: 98%;
    padding: 5px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    margin-bottom:5px;
      background-color: rgba(14, 67, 173, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

textarea {
    min-height: 50px;
    max-height: 60px;
    resize: none;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#responseMessage {
    margin-top: 10px;
    text-align: center;
    color: #28a745;
    font-weight: bold;
}