
section#studentForm form{
    width:600px;
    background-color: green;
    margin:0 auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding:20px;
}
.sNo{
    border: 1px solid #7E7E7E;
    border-radius: 3px;
    flex: 1;
    max-width: 60px;
    height: 60px;
    text-align: center;
    appearance: none;
    padding-top: 5px;
    font-size: 25px;
    margin-bottom: 10px;
}
button.sNoFormButton{
    width:90%;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(30,30,210,1) 100%, rgba(0,230,30,1) 100%);
    color:white;
    border: #25008b thin solid;
    border-radius: 5px;
    padding:10px;
}
button.sNoFormButton:hover{
    background: linear-gradient(180deg, rgba(130,122,255,1) 0%, rgba(21,21,203,1) 100%);
}
