/* CSS Document */

/* Global Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

/* Form Styles */
#application-form {
width: 80%;
margin: 40px auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#application {
    width: 80%;
    margin: 40px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#application .section {
    background-color: #f7f7f7;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#application label {
    display: block;
    margin-bottom: 10px;
}

#application input[type="text"],
#application input[type="email"], 
#application input[type="tel"], 
#application input[type="date"] 
{
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#application textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#application select {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#application input[type="file"] {
    width: 100%;
    margin-bottom: 20px;
}

#application button[type="submit"] {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#application button[type="submit"]:hover {
    background-color: #3e8e41;
}

/* Section Styles */
.section {
    background-color: #f7f7f7;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section h3 {
    margin-top: 0;
}

/* Label Styles */
label {
    display: block;
    margin-bottom: 10px;
}

/* Input Styles */
input[type="text"], input[type="email"], input[type="tel"], input[type="date"] {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Textarea Styles */
textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Select Styles */
select {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* File Input Styles */
input[type="file"] {
    width: 100%;
    margin-bottom: 20px;
}

/* Button Styles */
button[type="submit"] {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #3e8e41;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .section {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .section {
        margin-bottom: 5px;
    }
    input[type="text"], input[type="email"], input[type="tel"], input[type="date"] {
        height: 30px;
    }
    textarea {
        height: 80px;
    }
}
