body{
    font-family: "Poppins", serif !important;
}
.login-wrapper {
    padding: 30px;
    background: #ecf0fa;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.login-wrapper .login-form .login-input-section {
    background-color: #fff;
    border-radius: 7px;
    margin: 0px auto;
    padding: 30px;
    overflow: hidden;
    position: relative;
}

.login-logo{
    text-align: center;
}

.login-logo img{
    height: 80px;
}

.login-form .login-title{
    font-size: 20px;
    color: #000;
    font-weight: 500;
    text-align: center;
}

.login-form .form-control{
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .2);
    height: 43px;
    color: #8290a3;
    padding: 10px 20px;
    border-radius: 50px;
}

.login-form .form-control:focus{
    border:1px solid rgba(0,0,0,.2);
    outline: 0;
    box-shadow: none;
}

.form-group input {
    font-size: 14px;
}

.login-form .submit {
    background-color: #f1f8fe ;
    border: none;
    width: 100%;
    border-radius: 5px;
    padding: 10px 10px;
    color: #0377e8;
    border: 1px solid #0377e8;
    border-radius: 50px;
    transition: all 0.5s;
}

.login-form .submit:hover{
    background: #0377e8;
    color: #fff;
    transition: all 0.5s;
}

.err_email{
    padding-left: 20px;
}


@media (min-width:1200px){
    .login-wrapper .login-form .login-input-section{
        width: 450px;
    }
}
