
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');



*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}


body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgb(181, 255, 149);
}



form{
    width: 400px;
    border: 1px solid rgb(0, 0, 0);
    padding: 20px;
    border-radius: 20px;
    background-color:rgba(255, 101, 173, 0.993);
}


label, input, textarea, button{
    display: block;

}
label {
    font-weight: bold;
    font-size: 16px;
}


input, textarea, #student{
    width: 100%;
    padding: 8px;
    margin-bottom: 30px;
}
.password-container {
    margin-bottom: 65px;
}

button{
    margin: 0 auto;
    padding: 8px;
    font-size: 30px;
    background-color: rgba(255, 255, 255, 0.596);
    border: none;
    color: rgb(0, 0, 0);
    border-radius: 10px;
}

.error{
    position: absolute;
    width: 100%;
    background-color: rgb(201, 255, 194);
    border: solid;
    border-color: brown;
    border-radius: 0 0 10px 10px;
    padding: 2px;
    text-align: center;
    top: 54px;
    display: none;

}
form div{
    position: relative;
    
}



.number, button{
    cursor: pointer;
}

#student_num {
    display: flex; 
    /* This make the boxes display next to each other */
    gap: 2px; 
    align-items: center;

}

#student_num span {
    border: 2px solid black;
    line-height: 30px;
}
#student_num span, #student_num .number{
    width: 100%;
    padding: 8px;
    margin-bottom: 30px;
    background-color: rgb(193, 237, 237);
    width: 50px;
    height: 50px;
    color: rgb(107, 122, 255);
    font-size: 30px;
    text-align: center;
} 


.terms{

    display: flex;
    margin-bottom: 30px;
}

input[type="checkbox" i] {
    margin: 0%;
    width: 10%;
    margin-right: 10px;
}
