body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}
.application-form {
    max-width: 600px; /* Adjust width as needed */
    margin: 0 auto; /* Center the form */
    padding: 20px;
    border: 1px solid #ddd; /* Optional: border around the form */
    border-radius: 5px; /* Optional: rounded corners */
}

.application-form label {
    display: block;
    margin-bottom: 5px;
}

.application-form input[type="text"],
.application-form textarea,
.application-form select,
.application-form input[type="file"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px; /* Space below each form element */
    border: 1px solid #ccc; /* Border for form elements */
    border-radius: 4px; /* Rounded corners for form elements */
}

.application-form button {
    padding: 10px 15px;
    background-color: #007bff; /* Button background color */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.application-form button:hover {
    background-color: #0056b3; /* Button hover color */
}


footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
