/* Add this CSS to your external stylesheet or within a <style> tag in the <head> of your HTML */

/* General styling for body and layout */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url('banner.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* Style the "We are under maintenance" message */
.maintenance-message {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.maintenance-message h1 {
    color: #333;
    font-size: 24px;
}

.maintenance-message p {
    color: #666;
}

/* Style the "Contact Us" form */
.contact-form {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Style the form input fields */
.form-row input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Style the checkbox label */
.checkbox-label {
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 16px;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 16px; /* Adjust checkbox width */
    height: 16px; /* Adjust checkbox height */
}

.checkbox-label span {
    font-size: inherit; /* Maintain the same font size as other text */
}


/* Style the submit button */
button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 12px 24px; /* Increased padding for a larger button */
    border: none;
    border-radius: 25px; /* Rounded corners for a more modern look */
    cursor: pointer;
    font-size: 16px; /* Adjust font size for better visibility */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
    display: inline-block; /* Ensure button width adjusts based on content */
    text-align: center; /* Center text within the button */
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Style the social icons in the footer */
.social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.social-icons li {
    margin-right: 10px;
}

.social-icons a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
}

/* Style the logo */
.logo {
    max-width: 100%;
    height: auto;
}

/* Add animation properties for the form and logo */
.contact-form, .logo {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.5s both;
}

/* Define the fadeInUp animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
}

/* Add this CSS to your external stylesheet or within a <style> tag in the <head> of your HTML */
