/* Base styles remain the same */

body {
    font-family: Arial, sans-serif;
    background-color: #045faa;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%; /* Adjusted width for mobile devices */
    max-width: 80%; /* Optionally set a max-width for larger screens */
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #75c002;
    font-size: 2em;
    font-weight: bold;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #00afd8;
}

input[type="text"],
input[type="tel"],
input[type="file"] {
    margin-bottom: 15px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px;
    background-color: #75c002;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

button:hover {
    background-color: #0056b3;
}

/* Media query for smaller screens (e.g., mobile devices) */
@media only screen and (max-width: 600px) {
    .form-container {
        width: 100%; /* Set width to 100% for mobile devices */
        max-width: none; /* Optionally remove max-width for full width */
    }
}
