:root {
    --logBoxBg: #F8F8F8;
    --logFontColor: #3C424A;
    --logIcColor: #9A9DA1;
    --logErrColor: #F44336;
}

html{
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/bg_login.png);
}

body {
    background-color: rgba(53, 72, 86, .9);
}

.pageCnt {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    height: calc(100vh - 50px);
    min-height: auto;
}

.logoCnt {
    height: 15vh;
    width: 98%;
    margin: 0 auto;
    background-image: url(../img/logo.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 10vh;
}

.frmCnt {
    margin-top: 30px;
    display: block;
    position: relative;
    width: 98%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
}

.frmBox {
    background-color: var(--logBoxBg);
    border-radius: 10px;
    padding: 35px 40px;
    transition: all .2s;
    opacity: 0;
    display: none;
    flex-direction: column;
}

.actvBox {
    display: flex;
}

.frmTitBox {
    font-size: 1.5rem;
    font-family: 'Roboto';
    font-weight: bold;
    color: var(--logFontColor);
    margin-bottom: 15px;
}

.frmMsgBox {
    font-size: .875rem;
    font-family: 'Roboto';
    font-weight: 400;
    color: var(--logFontColor);
    margin-bottom: 10px;
}

.frmLblInf {
    color: var(--logFontColor);
    background-color: rgba(234, 139, 29, 0.1);
    border-radius: 6px;
    font-family: 'Roboto';
    font-size: 1rem;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 5px;
}

.frmInptCnt {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 15px;
    padding: 5px 0;
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
    align-items: center;
    justify-content: space-around;
}

.inptFrm { 
    color: var(--logFontColor);
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 1rem;
    text-align: left;
    width: 100%;
    border: 0;
    background: transparent;
    outline: none;
}

.inptFrm::placeholder{
    opacity: 0.7;
}

.inptErrCnt {
    display: flex;
    justify-content: space-between;
    color: var(--logErrColor);
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 0.75rem;
    min-height: 15px;
    align-items: center;
}

.inptErrCnt i {
    font-size: .825rem;
}

.inptFrmErr{
    border-color: var(--logErrColor);
    margin-bottom: 0;
}

.logFrmBtn{
    margin-top: 25px;
    margin-bottom: 10px;
}

.frmBtnCnt{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    column-gap: 10px;
    margin-top: 20px;
    margin-bottom: 5px;
}

.fgtFrmBtn{
    color: var(--secFontColor);
    font-family: 'Roboto';
    font-size: .75rem;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 5px;
}

.fgtFrmBtn span{
    padding: 5px;
    cursor: pointer;
}