/* General styles */
/* Main content background */

.form-background {
    background: url('../images/Contact_US.jpg') no-repeat center center/cover; /* Add your background image here */
    height: 100vh; /* Full-screen height */
    display: flex;
    justify-content: start; /* Form aligned to the left */
    align-items: center;
    padding: 20px;
}

.form-container {
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent background for form */
    padding: 20px 30px;
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Subtle shadow for the form */
    max-width: 600px; /* Control form width */
    width: 100%; /* Responsive width */
    height: 70%; /* Control form height */
}

  /* Form styling */
form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px; /* Rounded corners */
}

form .row {
    display: flex;
    gap: 15px; /* Add gap between email and phone inputs */
}

form .row div {
    flex: 1; /* Email and phone inputs are equally sized */
}

form textarea {
    resize: none;
    height: 100px;
}

form button {
    background: #990000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 10px; /* Rounded corners for button */
    cursor: pointer;
}
.button-container {
    text-align: center; /* Centers the button container */
}

form button:hover {
    background: #990000;
}

  /* Responsive design */
@media (max-width: 768px) {
    .form-container {
        max-width: 100%;
        padding: 15px;
    }

    form .row {
      flex-direction: column; /* Stack email and phone fields on smaller screens */
    }
}