@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/static/fonts/plusJakartaSans/PlusJakartaSans-Regular.ttf');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/static/fonts/plusJakartaSans/PlusJakartaSans-Bold.ttf');
    font-weight: bold;
}

body {
    font-family: 'Plus Jakarta Sans';
}

.leftside {
    height: 100vh;
    width: 100%;
}

.rightside {
    height: 0vh;
    width: 100%;
}


@media screen and (min-width:768px) {
    .leftside, .rightside {
        height: 100vh;
        min-height: 550px;
    }

}

.leftside {
    background: white;
}


.loginDiv {
    text-align: center;
    max-width: 60%;
    margin-bottom: 40px;
}

#loginHead {
    text-align:center; 
    font-size:28px; 
    color:black; 
    font-weight:bold; 
    font-style:sans-serif;
}

#signUpHead {
    text-align:center; 
    font-size:28px; 
    color:black; 
    font-weight:bold; 
    font-style:sans-serif;
}

@media screen and (min-width:768px) {
    .loginDiv {
        max-width: 60%;
        margin-bottom: 80px;
    }
}

.loginInputContainer {
    position: relative;
    width: 100%;
    min-height: 32px;
}

.loginInput {
    width: 100%;
    min-height: 32px;
    border: 2px solid bold black;
    border-radius: 4px;
    align-items: center;
    font-size: 12px;
    color: black;
    font-weight: bold;
    padding-left: 40px;
    margin-bottom: 5px;
}

.loginInput textarea {
    color: black;
    font-weight: bold;
    padding-left: 40px;
}

.loginInputIconContainer {
    position: absolute;
    top: 8px;
    left: 12px;
    width: 16px;
    height: 16px;
}

.loginInputIcon {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.passwordInput {
    width: 100%;
    min-height: 32px;
    border: 2px solid bold black;
    border-radius: 4px;
    align-items: center;
    font-size: 12px;
    color: black;
    font-weight: bold;
    padding-left: 40px;
    margin-bottom: 5px;
}

.passwordInput textarea {
    color: black;
    font-weight: bold;
    padding-left: 40px;
}

.passwordInput.secondaryPI {
    margin-bottom: 16px;
}

.compNumInput {
    width: 100%;
    min-height: 32px;
    border: 2px solid bold black;
    border-radius: 4px;
    align-items: center;
    font-size: 12px;
    color: black;
    font-weight: bold;
    padding-left: 40px;
    margin-bottom: 0;
}

.compNumInput textarea {
    color: black;
    font-weight: bold;
    padding-left: 40px;
}

.compNumInput.secondaryPI {
    margin-bottom: 16px;
}

.forPassAnch {
    font-size: 10px;
    font-weight: bold;
    text-decoration: underline;
    color: black;
    padding-bottom: 16px;
    float: right;
    margin-top: 0;
}

.forPassAnch:hover {
    color: #098F93;
}

.loginButton {
    width: 100%;
    min-height: 32px;
    align-items: center;
    color: white;
    font-size: 12px;
    background-color: #098F93;
    border: none;
    border-radius: 4px;
    margin-bottom: 0;
}

.loginButton:hover {
    background: #062e2c;
    color: white;
    cursor: pointer;
}

.signUpButton {
    width: 100%;
    min-height: 32px;
    align-items: center;
    color: white;
    font-size: 12px;
    background-color: #098F93;
    border: none;
    border-radius: 4px;
    margin-bottom: 0;
    margin-top: 12px;
}

.signUpButton:hover {
    background: #062e2c;
    color: white;
    cursor: pointer;
}

.loginPageBotParas {
    font-size: 10px;
    font-weight: bold;
    color: black;
    margin-top: 10px;
    margin-bottom: 2px;
}

.loginPageBotParas a:hover {
    color: #098F93;
}

.loginRight {
    height: 200px;
    width: 200px;
    color: black;
    border: 2px solid black;
}

/*hide the text when not in big screen!*/
#loginPageHeader {
    visibility: hidden;
}

#loginPageText {
    visibility: hidden;
}

.loginPageLogo {
    visibility: hidden;
}

#loginLogoID {
    visibility: hidden;
}

@media screen and (min-width:768px) {
    .rectOne {
        width: 60px;
        height: 60px;
        position: absolute;
        left: 32px;
        top: 30px;
        background: #098F93;
    }

    .rectTwo {
        position: absolute;
        width: 60px;
        height: 60px;
        left: 44px;
        top: 42px;

        border: 2px solid #FFFFFF;
    }

    #loginPageHeader {
        visibility: visible;
        position: absolute;
        width: 340px;
        left: 32px;
        top: 120px;

        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 800;
        font-size: 32px;
        line-height: 40px;

        opacity: 1;
        color: #FFFFFF;
    }

    #loginPageText {
        visibility: visible;
        position: absolute;
        width: 494px;
        height: 125px;
        max-width: 90%;
        left: 0px;
        right: 0px;
        top: 100px;

        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        text-align: left;

        opacity: 1;
        color: #FFFFFF;
    }

    .loginPageLogo {
        visibility: visible;
        position: absolute;
        width: 152px;
        height: 195px;
        top: 350px;
        left: 75px;

        opacity: 0.4;
        transform: rotate(-15deg);
    }

    #loginLogoID {
        visibility: visible;
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }
}



/*Logout page*********************************/
#signOutHead {
    text-align:center; 
    font-size:28px; 
    color:black; 
    font-weight:bold; 
    font-style:sans-serif;
}

.loginButton {
    width: 100%;
    min-height: 32px;
    align-items: center;
    color: white;
    font-size: 12px;
    background-color: #098F93;
    border: none;
    border-radius: 4px;
    margin-bottom: 0;
}

.loginButton:hover {
    background: #062e2c;
    color: white;
    cursor: pointer;
}


/*password reset page */
#passResetHead {
    text-align:center; 
    font-size:28px; 
    color:black; 
    font-weight:bold; 
    font-style:sans-serif;
}

/*password reset email page */
#passResetEHead {
    text-align:center; 
    font-size:28px; 
    color:black; 
    font-weight:bold; 
    font-style:sans-serif;
}

/*password reset sent page */
#passResetSHead {
    text-align:center; 
    font-size:28px; 
    color:black; 
    font-weight:bold; 
    font-style:sans-serif;
}

