/* General Page Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #5a78ac; /* Blue background for the whole page */
    color:black; /* Dark brown color for text */
}

/* Form Section */
.form-section {
    background-color: #fff; /* White background for section */
    padding: 40px;
    margin: 20px auto;
    width: 80%;
    max-width: 50VW;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1.5s ease-in-out;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color:black; /* Dark brown color for labels */
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group input[type="file"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="number"]:focus,
.form-group select:focus,
.form-group input[type="file"]:focus {
    border-color: #5a78ac; /* Focus border color to match page background */
}

.form-group button {
    display: inline-block;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    background-color: #0d6efd   ; /*Button color*/
    color:white; /* Dark brown color for button text */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


.error-msg {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
