label.error{
    color: #dc3545 !important;   
}

.scholarships-section{
    margin: 0;
    padding: 0;
    margin-bottom: 6rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scholarships-container{
    margin: 4rem 0;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.scholarships-form-container{
    width: 100%;
    padding: 1.5rem;
}

.scholarships-form-header{
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #141B47 0.01%, #711C3E 99.98%);
}

.scholarships-form-header h3{
    color: #fff;
    margin: 0;
    font-weight: bold;
}

.scholarships-form-container label{
    margin: 0;
    margin-bottom: 8px;
    font-weight: bold;
}

.btn-box{
    width: 100%;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sclr-apply-btn {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    background-color: #E0001C;
    border: none;
    cursor: pointer;
}

.sclr-apply-btn:hover {
    background: linear-gradient(to right, #E0001C 50%, #141B47 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all .5s ease-out;
}

input::-webkit-inner-spin-button{
    display: none;
}

@media screen and (max-width: 1440px) {
    .scholarships-container{
        width: 50%;
    }
}


@media screen and (max-width: 1080px) {
    .scholarships-container{
        width: 60%;
    }
    .scholarships-form-header h3{
        font-size: 28px;
    }
}

@media screen and (max-width: 990px) {
    .scholarships-container{
        width: 70%;
    }

}

@media screen and (max-width: 768px) {
    .scholarships-container{
        width: 80%;
    }
    .scholarships-form-header h3{
        font-size: 24px;
    }
}

@media screen and (max-width: 600px) {
    .scholarships-container{
        width: 90%;
    }
}
