
.logo{
    width: 80px;
    height: 80px;
    margin-top: 100px;
}

.title{
    font-size: 18px;
    line-height: 18px;
    /* identical to box height */
    text-align: center;
    margin-top: 6px;
    color: #1A8FE3;

    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);

}


.subtitle{ 
    font-size: 13px;
    line-height: 9px; 
    text-align: center; 
    color: #000000; 
    margin-top: 5px;
}

.login-container{ 
    margin-top: 34px;
    width: 258px; 
    height: fit-content;
    background: #A3E3FF;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 20px;
}

.login-container h3{ 
    font-size: 13px;
    line-height: 12px; 
    text-align: center; 
    color: #2E2D2D;
    margin-top: 20px;
}

.login-container h4{ 
    font-size: 10px;
    line-height: 12px; 
    text-align: center; 
    color: #2E2D2D;
    margin-top: 5px;
    margin-bottom: 24px;
}


label{ 
    font-size: 12px;
    line-height: 9px; 
    width: 90%;
    color: #2E2D2D;
    height: fit-content;
    margin-bottom: 5px;
}

input{ 
    width: 90%;
    height: 24px;  
    background: #EFF7F6;
    border: 1px solid #428977;
    border-radius: 4px; 
    font-size: 11px;
    line-height: 8px; 
    color: #2E2D2D;  
    padding-left: 10px;
    margin-bottom: 12px;
    outline: none;
}

.login-button{ 
    width: fit-content;
    height: fit-content; 
    background: #1A8FE3;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    border-radius: 2px; 
    font-size: 12px;
    line-height: 9px; 
    color: #FFFFFF; 
    margin-top: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    outline: none;
    border: none;
    padding: 10px 10px;
}

hr{ 
    width: 100%;
    height: 1px;
    background: rgba(46, 45, 45, 0.2);

}

.teacher-account{
    align-self: flex-start;
    margin-top: 30px;
    font-size: 10px;
    line-height: 8px; 
    color: #2E2D2D; 
    text-decoration: underline;
    cursor: pointer;
    margin-left: 12px;
}

.student-account{
    align-self: flex-end;
    margin-top: 30px;
    font-size: 10px;
    line-height: 8px; 
    color: #2E2D2D; 
    text-decoration: underline;
    cursor: pointer;
    margin-right: 12px;
    margin-bottom: 34px;
}







