.sinif-ekle input{
    height: 55px;
    color: #A0ACB5 !important;
}
.sinif-ekle input::placeholder{
    color: #A0ACB5 !important;
    font-family: 'Poppins-medium';
}
/*radio button*/
.radio-btn input {
    display: none;
}
.radio-btn label span {
    position: relative;
    line-height: 22px;
}
.radio-btn label span:before,
.radio-btn label span:after {
    content: '';
}
.radio-btn label span:before {
    box-shadow: 0 0 20px 0 rgba(97, 104, 114, 0.15);
    border-radius: 10px;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
    background-color: #fff;
}
.radio-btn label span:after {
    border-radius: 10px;
    background-color: #A0ACB5;
    width: 30px;
    height: 30px;
    position: absolute;
    top: -2px;
    left: 0;
    transition: 300ms;
    opacity: 0;
}
.radio-btn label input:checked+span:after {
    opacity: 1;
}