body{
    background: url(../img/login-bg.jpg) no-repeat center center /cover;
    width: 100vw;
    height: 100vh;
    background-position: 0 0;
}

.logCont{
    width: 450px;
    background: white;
    transform: translate(0%,0%);
    text-align: center;
    box-shadow: 1px 1px 10px rgba(0,0,0,.4);
    border-radius: 5px;
    height: 420px;
    padding: 25px 30px;
}

.container-fluid{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    width: 115px;
    margin-right: 30px;
}

.login{
    font-family: 'roboto';
    padding: 10px 30px;
    display: inline-block;
    background: #f31111;
    transition: all linear .3s;
    color: white;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 14px;
    box-shadow: 1px 1px 5px rgba(0,0,0,.2);
}

p.forgot:hover{
    color: rgba(0,0,0,.7)!important;
}

p.forgot{
    color: rgba(0,0,0,.7);
}


.login:hover{
    color: #f31111;
    background: white;
    border: 1px solid #f31111;
}

.modalIn{
    background: url(../img/login-manIcon.png) no-repeat;
    padding-right: 40px;
}

.passForm{
    background: url(../img/login-passIcon.png) no-repeat;
    padding-right: 40px;
}

.emailModIn{
    background: unset;
}

.logH3{
    font-weight: 400;
    font-size: 18px;
}

.modalIn::placeholder{
    font-family: 'roboto';
    font-weight: 400;
    color: black;
    font-size: 14px;
    transition: all linear .3s;
}

.forgot{
    font-family: 'roboto';
    font-weight: 400;
    color: black;
    font-size: 14px!important;
    transition: all linear .3s;
}


.forgot:hover{
    color: #f31111;
}


@media (min-width:300px) and (max-width:450px){
    .logCont{
        padding: 20px 15px;
    }
}