/* Reset some default styles */
body, h1, h2, h3, p, ul, li, form, input, select {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: Arial, sans-serif;
}

/* Global styles */
body {
    /* Set the background image */
    background-image: url('banner.jpg');
    /* You can also specify other background properties like position and repeat if needed */
    background-size: cover; /* Cover the entire viewport */
    background-repeat: no-repeat; /* No repeating */
    background-position: center center; /* Center the image */
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Header styles */
header {
    text-align: center;
    background-color: #f3c74200;
    color: #fff;
    padding: 10px 20px; /* Adjust padding for more space */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    font-size: 24px;
    order: 1; /* Move the logo to the left */
}

/* Container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner styles */
.banner {
    text-align: center;
    width: 70%; /* Make the banner 30% smaller in width */
    max-width: 600px; /* Set a max-width for larger screens */
    margin: 20px auto; /* Center the banner horizontally */
    padding: 12px 20px; /* Reduce the height by 40% and adjust padding */
    background-color: #f3c74200;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.banner h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.banner p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Form styles */
.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-row input,
.form-row select {
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 16px;
    margin-right: 20px; /* Add margin for spacing on the right side */
}

.checkbox-label {
    display: block;
    margin-top: 10px;
    text-align: left;
}

/* Submit button style */
form button {
    background-color: #f3c742;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
    display: flex;
    align-items: center;
}

/* Arrow icon */
form button i {
    margin-left: 10px;
}

/* Footer styles */
footer {
    text-align: center;
    background-color: #005ea200;
    color: #fff;
    padding: 20px 0;
}

.social-icons {
    list-style: none;
    padding: 0;
}

.social-icons li {
    display: inline;
    margin-right: 10px;
}

.social-icons a {
    color: #f3c742;
    font-size: 24px;
}

/* Responsive design */
/* For screens up to 600px (typical mobile screens) */
@media (max-width: 600px) {
    header {
        padding: 10px 20px; /* Adjust padding */
    }
    .logo {
        font-size: 18px; /* Reduce font size */
    }
    .banner {
        width: 80%; /* Adjust the width for smaller screens */
        margin-top: 10px;
        padding: 10px;
    }
    .banner h1 {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .banner p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .form-row input,
    .form-row select {
        padding: 8px;
        font-size: 14px;
    }
    .checkbox-label {
        font-size: 12px;
    }
    form button {
        padding: 8px 16px;
        font-size: 14px;
        margin-top: 10px;
    }
    button i {
        font-size: 16px;
        margin-left: 5px;
    }
}

/* You can define styles for tablet and desktop screens in the respective media queries as needed */
