.school-add-student-form {
    width: 100%;
    background: #fff;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 2%;
}

.school-add-student-form-field{
	display: block;
	width: 48%;
}


.school-add-student-form input[type=text],
.school-add-student-form input[type=date],
.school-add-student-form input[type=email],
.school-add-student-form select{
width:100%;
 display: flex;
    height: 56px;
    padding: 15px;
    align-items: center;
    align-self: stretch;
   
    border-radius: 8px;
    border: 1px solid var(--Border, #E6E9FC);
    background: #FFF;
    font-size: 14px;
    color: #333;

}


.school-form-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.school-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin: 16px 0 8px;
    color: #333;
}

.school-form-input {
    display: flex;
    height: 56px;
    padding: 15px;
    align-items: center;
    align-self: stretch;
    width: 50%;
    border-radius: 8px;
    border: 1px solid var(--Border, #E6E9FC);
    background: #FFF;
    font-size: 14px;
    color: #333;
}

.school-form-actions {
	width: 48%;
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.school-btn-cancel {
    display: flex !important;
    width: 50% !important;
    height: 40px;
    padding: 10px 15px !important;
    justify-content: center;
    align-items: center;
    border: none !important;
    border-radius: 8px !important;
    background-color: #F0F2F5 !important;
    cursor: pointer;
	color: #3f4dcb !important;
}

.school-btn-submit {
    display: flex !important;
    width: 50% !important;
    height: 40px;
    padding: 10px 15px !important;
    justify-content: center;
    align-items: center;
    border: none !important;
    border-radius: 8px !important;
    background-color: #3f4dcb !important;
    cursor: pointer;
	color: #fff !important;
}


.school-success-message {
    margin-top: 20px;
    color: green;
    font-weight: bold;
}
