/* styles.css */

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

header {
    font-family: 'Montserrat', sans-serif;
    background-color: #f2f2f2;
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid #ddd;
    position: relative;
}

.logo img {
    display: block;
    margin: 0 auto;
    max-width: 90px; /* Adjust size as needed */
    height: auto;
}

header h1 {
    color: #00306e;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
}

header p {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    color: #555;
}

nav ul {
    font-family: 'Montserrat', sans-serif;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #00306e;
    margin: 0;
}

nav ul li {
    padding: 10px 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}

.application-form {
    max-width: 800px;
    margin: 20px auto;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.application-form h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    background-color: #00306e;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 18px;
}

form {
    display: flex;
    flex-direction: column;
}

fieldset {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
}

legend {
    font-weight: bold;
    color: #d19f32;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
}

label {
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family:"font-family: Montserrat;"
}

textarea {
    resize: vertical;
    height: 80px;
}

button {
    background-color: #00306e;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    
}

button:hover {
    background-color: #d19f32;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f2f2f2;
    margin-top: 20px;
    border-top: 2px solid #ddd;
    font-family: 'Montserrat', sans-serif;
}

input[type="checkbox"] {
    display: inline-block !important;
    width: 18px; /* Adjust size for better visibility */
    height: 18px;
    accent-color: #007bff;
    margin-right: 10px;
}
