.schoolpricingform {
    color: #59F3C5 !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.schoolpricingform .row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
    justify-content: stretch;
}

.schoolpricingform .column {
    flex: 1;
}

.schoolpricingform input:not([type="submit"]),
.schoolpricingform select {
    height: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    background-color: #0C57B4;
    color: #59F3C5 !important;
    padding: 0.5em;
    width: 100%;
}


@media all and (max-width:950px) {
    .schoolpricingform .row {
        flex-direction: column;
    }
}