/* Your existing CSS styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Euclid Square', sans-serif;
    background-color: white; /* Set background color to white */
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.form-container {
    width: 25%;
    color: black; /* Change text color to black */
}

.form-container h2 {
    color: black; /* Change heading color to black */
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 10px;
    color: black; /* Change label color to black */
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px; /* Add border radius to input elements */
}

button {
    background-color: #a41e22;
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px; /* Add border radius to button */
}

.image-container {
    width: 75%;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

/* For small screens (mobile phones) */
@media only screen and (max-width: 600px) {
    /* Make the form container full width */
    .form-container {
        width: 100%;
    }

    /* Adjust the width of the form inputs */
    .form-input {
        width: 100%;
    }

    /* Adjust the width of the select dropdown */
    .form-select {
        width: 100%;
    }

    /* Adjust the margin and padding for better spacing */
    .form-input,
    .form-select,
    .form-submit {
        margin: 10px 0;
        padding: 10px;
    }
}

