

@import url('https://fonts.googleapis.com/css?family=Muli:300,400');

*{
    margin: 0;
    padding: 0;
    outline: none;
}

input{box-sizing:border-box} 

.main{
    box-sizing: content-box;
    height: 90vh;
    position: relative;
    width: 100%;
}

.logo{
    margin-top: 30px;
    margin-left: 30px;
}
.logo img{
    width: 125px;
}
.form-wrap{
    box-sizing: border-box;
    width: 90%;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: auto;
    max-width: 420px;   
}

.form-login{
    background: #ffffff;
  /*  border-radius: 10px;
    border: 1px solid #e8e8e8; */
    padding: 30px 20px 25px 20px;
    
    font-family: "Muli" !important;
    width: 100%;
    
    position: relative;
}
.form-login h2{
    color: #3e3e3e;
    font-weight: 300;
    font-size: 30px;
    margin-left: 4px;
    margin-bottom: 30px;
    font-family: "Muli";
}

.input-group{
    position: relative !important;
    width: 100%;
    margin-bottom: 19px;
}
.input-group img{
    position: absolute;
    left: 12px;
    top: 16px;
    width: 20px;
}

.input-group input{
    padding: 16px 16px 16px 47px;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    font-weight: 400;
    color: #a5a5a5;
    font-size: 18px;
    width: 100%;
    font-family: "Muli";
}

.form-login button{
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 15px;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: "Muli";
    background: #5845dc;
    color: #ffffff;
    border-radius: 9px;
    margin-bottom: 40px;
}

.forgot-password{
    color: #ada4ec;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

/* style from main.css*/
.main input[type="text"].error, .main input[type="file"].error, .main input[type="password"].error, .main select.error, .main input[type="search"].error, .main textarea.error, .main .content .error:focus {
    border: 1px solid #ff0000 !important;
}
.error + p.error_text {
    display: block;
}

p.error_text {
    display: none;
    color: #ff0000;
    font-size: 12px;
    padding: 0;
    line-height: 19px;
    margin: 0;
}
p.error_text_header {
    color: #ff0000;
}

@media screen and (max-height: 500px){

    .form-wrap{
        box-sizing: border-box;
        width: 90%;
        display: flex;
        height: 100%;
        justify-content: center;
        align-items: center;
        position: relative;
        margin: auto;
        max-width: 420px;
        margin-top: 3%;   
    }

} 