#center{
    width:100%;
    height: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


#login{
    width:100%;
    font-size: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#login label{
    margin-top:20px;
    margin-bottom: 20px;
    font-size: large;
    font-weight: bold;
}

#login input{
    margin-bottom: 15px;
    width:50%;
    text-align: center;
    height:60px;
    border: 1px solid rgb(100, 100, 100,0.2);
    border-radius: 12px;
}

#submit{
    margin-top:30px;
    width:210px;
    height:37px;
    border-radius: 12px;
    background-color: #AFA5A540;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

#login{
    height: calc(100% - 38px - 150px)
}

#alertbox{
    height:100px;
    text-align: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: medium;
}

.activeerror{
    color:red !important;
}