body{
    margin:0;
    height:100vh;
    width:100vw;
    overflow:hidden;
    align-items: center;
    color:#485563;
    background-color: white;
    justify-content: center;
    /* background-image: url('../../images/login_accuflo.jpg'); */
    /* background-color: #3a4651 !important; */
    font-family: inherit;
    font-size:1rem;
    font-weight: 400;
}
.logo-cover{
    background-image: url('../../images/login-cover-bold.jpg');
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.logo{
    position: absolute;
    width: 70px;
    margin-left: 39px;
    margin-top: 39px;
    border-radius: 50%;
}

.main{
    width:350px;
    padding:30px 20px 30px 20px;
    border-radius: 20px;
    font-family: sans-serif;
    font-weight: 700;
}
.name{
    color: white;
    position: absolute;
    margin-top: 63px;
    margin-left: 123px;
    font-size: 1.2rem;
}
.title{
    text-align: center;
    font-weight: 800;
    line-height: 1.2;
    color: #555;
    letter-spacing: .5px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.credentials{
    width:100%;
    padding:2px 5px 12px 5px;
}

.credentials input{
    border: none;
    outline: none;
    background:none;
    font-size:0.9rem;
    color:#555;
    padding: 20px 10px 10px 20px;
    letter-spacing: 1px;
    top: -53px;
}
.username,.password,.email{
    border-bottom: 2px solid #c2c4c3;
    transition: .5s ease;
}
.username,.email{
    margin-bottom: 15px;
}
.username:hover,.password:hover{
    border-bottom: 3px solid #485563;
}
.password{
    /* position:relative; */
    margin-bottom: 15px;
}

.password span{ 
    /* position: absolute; */
    top: -33px;
}
.submit{
    outline:none;
    border:none;
    width:100%;
    height:40px;
    border-radius: 30px;
    color: #2c2b2e;
    text-align: center;
    background-image: linear-gradient(to right,#82c2ed 0%,#82c2ed 51%,#82c2ed 100%);
    background-size:200%;
    box-shadow: 1px 1px 2px #b1b1b1,
                -1px -1px 2px #fff;
    transition: .5s;    
}
.link{
    margin: 5px 10px 20px 10px;
    text-align: right;
}
.link a{
    font-size:14px;
    color:#555;
    text-decoration: none;
}

.link1{
    margin: 30px 10px 10px 10px;
    text-align: center;
}
.link1 a{
    font-size:16px;
    color:#555;
    text-decoration: none;
}
.card{
    border-radius:60px 0;
}
@media screen and (max-width:576px){
    .main{
        width:auto;
    }
    .link a{
        color:#3dbcd0;
    }
    .logo-cover{
        display: none;
    }
    .login-section{
        width: 100% !important;
    }
}
/* override invalid feedback style */
.invalid-feedback{
    display: block;
    color: #b42f21;
}

.error{
    color: #dc3545;
    font-size: 80%;
    /* position: absolute; */
    top: 11px;
   
}
@media (max-width:767px){
    .login-form {
        width: 75%!important;
    }
}