/* Reset styles */

/* Grouping File Uploads in One Line */
.file-upload-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.file-upload-row div {
    flex: 1; /* Make both file inputs equal in size */
}

/* Optional file fields */
input[type="file"] {
    width: 100%; /* Ensure file input takes the whole width */
    padding: 5px;
    border: 1px solid #ccc;
    background: #f8f8f8;
    border-radius: 5px;
}

/* Grouping Email and Mobile in One Line */
.form-row {
    display: flex;
    gap: 10px; /* Space between fields */
}

.form-row div {
    flex: 1; /* Equal width for both fields */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body Styling */
body {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

/* Banner Styling */
.banner {
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin-bottom: 20px;
}

.banner img {
    width: 100%;
    border-radius: 8px;
}

/* Form Container */
.container {
    background: white;
    padding: 25px;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-top: 5px solid #0033A0; /* USA Blue */
    text-align: center;
}

/* U.S. Embassy Heading */
h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #0033A0;
}

/* Form Label */
label {
    font-weight: bold;
    display: block;
    text-align: left;
    margin: 10px 0 5px;
    color: #333;
}

/* Input Fields */
input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Textarea Styling */
textarea {
    resize: none;
    height: 80px;
}

/* File Input Styling */
input[type="file"] {
    padding: 5px;
    border: none;
    background: #f8f8f8;
}

/* Submit Button */
button {
    width: 100%;
    padding: 12px;
    background: #D7141A; /* USA Red */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
}

button:hover {
    background: #a60f13;
}

/* Footer Message */
p {
    margin-top: 15px;
    font-size: 14px;
}

p a {
    color: #0033A0;
    text-decoration: none;
    font-weight: bold;
}

p a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 500px) {
    .container {
        width: 90%;
    }
}
