body {
    font-family: sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
}

.container img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.subtitle {
    text-align: left;
    font-size: 1rem;
    color: #666;
    margin-bottom: -1rem;
}

h1 {
    text-align: left;
    color: #333;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input[type="text"],
input[type="tel"],
input[type="number"],
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M5%208l5%205%205-5z%22%20fill%3D%22%23666%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25em;
}

select.placeholder-selected {
    color: #999;
}

select {
    color: #333;
}

.select_box {
    display: flex;
    gap: 1rem; /* Spacing between the dropdowns */
    list-style: none;
    padding: 0;
    margin: 0;
}

.select_item {
    flex: 1;
}

button[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    background-color: #ff5722;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 1rem; /* Add some space above the button */
}

button[type="submit"]:hover {
    background-color: #b33300;
}

button[type="submit"]:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
