

.admissioncontainer {
    width: 80%;
    max-width: 750px;
    margin: 30px auto;
    padding-top: 60px;
}

.page-title {
    text-align: center;
    color: #004080;
    font-size: 2.3em;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Form Styles */
.inquiry-form {
    background-color: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #28a745;
    transition: all 0.3s ease;
}

.inquiry-form:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #004080;
    margin-bottom: 6px;
    font-size: 1.1em;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1em;
    border: 2px solid #d1d1d1;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #28a745;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.3);
}

textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 14px 0;
    background-color: #28a745;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    background-color: #218838;
    box-shadow: 0 4px 8px rgba(33, 136, 56, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8em;
    }

    .inquiry-form {
        padding: 20px;
    }

    .submit-btn {
        font-size: 1.1em;
    }
}
