body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    padding: 10px;
}

/* A container to center the content and align it to the left. */
.form-container {
    width: 10%;
    max-width: 10px;
    margin: 0 auto;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Style the logo image */
.form-container img {
    display: block;
    margin-bottom: 10px;
}

/* Style the form header */
.form-container h1 {
    color: #ffffff; /* A slightly different green to match the inline style */
    text-align: left;
    margin-bottom: 20px;
}

/* Style the form element itself */
form {
    display: left;
    flex-direction: column;
    gap: 15px;
}
/* Style all labels */
label {
    font-weight: bold;
    color: #555;
    display: block;
}

/* Style all input fields and the select box */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="address"],
select {
    width: 70%;
    padding: 10px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
    font-size: 16px;
}

/* Add a focus state to inputs for better usability */
input:focus, select:focus {
    border-color: #E3DFDC;
    outline: none;
}
/* Customize the select element's appearance */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB9%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13.6-6.4H18.9c-5.9%200-11.3%203.2-13.6%206.4a17.6%2017.6%200%200%200%200%2016.9l128.8%20127.8a17.6%2017.6%200%200%200%2013.6%206.4s2.8%200%204.3-1.6l130.3-129.3c5.5-5.5%205.5-14.3%200-19.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    cursor: pointer;
}

/* Style the placeholder text */
::placeholder {
    color: #999;
}
