.admission-page {
    padding: 60px 0;
}

.admission-form-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.50);
    padding: 30px;
    margin-bottom: 30px;
}

    .admission-form-card h3 {
        font-size: 22px;
        margin-bottom: 20px;
        padding: 12px;
        border-bottom: 2px solid #eee;
        background-color: #253141;
        color: #FFFFFF;
        border-radius: 20px;
    }

.student-card {
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    background: #fafafa;
}

    .student-card h4 {
        font-size: 18px;
        margin-bottom: 15px;
        padding-right: 100px;
    }

.remove-student-btn {
    position: absolute;
    top: 15px;
    left:80%;
    right: 20px;
}

.admission-alert {
    margin-bottom: 20px;
}

@media (max-width: 767px) {

    .admission-form-card {
        padding: 18px;
    }

    h1 {
        font-size: 40px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    .remove-student-btn {
        position: static;
        display: block;
        width: 100%;
        margin-top: 10px;
    }
}

.g-3 {
    margin-top: 5px;
}

.already-attending-checkbox {
    position: relative;
    z-index: 10;
    cursor: pointer;
}
    .already-attending-checkbox + label {
        cursor: pointer;
    }

/* Required / optional field indicators */
.required-label::after {
    content: " *";
    color: #b3001b;
    font-weight: 700;
}

.optional-label::after {
    content: " (optional)";
    color: #6c757d;
    font-weight: 400;
    font-size: 0.85em;
}

/* Validation message visibility */
.field-validation-error,
.validation-summary-errors {
    display: block;
    margin-top: 4px;
    color: #b3001b;
    font-weight: 600;
    font-size: 0.925rem;
}

.input-validation-error {
    border-color: #b3001b !important;
}

.validation-summary-errors ul {
    margin-bottom: 0;
    padding-left: 18px;
}
