/* Fix for School Name label animation */
.form-group#school_name_section {
    position: relative;
}

.form-group#school_name_section label {
    position: absolute;
    left: 50px !important; /* Same as other fields */
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 5px;
    z-index: 2;
}

/* Lift label on focus, when value present, or when JS marks filled/focused */
.form-group#school_name_section input:focus + label,
.form-group#school_name_section input:not(:placeholder-shown) + label,
.form-group#school_name_section.focused label,
.form-group#school_name_section.filled label {
    top: -10px !important;
    left: 45px !important;
    font-size: 0.8rem !important;
    color: var(--accent) !important;
    background: rgba(26, 26, 46, 0.9) !important;
    transform: translateY(0) !important;
}
