body{
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.logo{
    border-radius: 20px;
    border-color: black;
    text-align: center;
    justify-content: center;
}

.code{
    height: 30px;
    margin-top: 30px;
    border-radius: 5px;
    border-color: transparent;
    outline: none;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 1);
    text-align: center;
}

.notregistered{
    border-color: red;
    border-radius: 5px;
    transition: ease-in-out;
}

.noinput{
    border-color: blue;
    border-radius: 5px;
    transition: ease-in-out;
}

.loggedin{
    border-color: yellowgreen;
    border-radius: 5px;
    transition: ease-in-out;
}

.hide{
    display: none;
}

/*Eto naman is para maging responsive yung website pwede sya sa cp or laptop */
@media screen and (max-width: 375px){
    .isu{
        text-align: center;
    }
    
}