*{margin: 0;padding: 0;box-sizing: border-box;}
a{text-decoration: none;}
ul,li{list-style: none;}


.flex{display: flex;}


.login_banner{
    background: url('./images/login_banner.png') no-repeat;
    background-size: 100% 100%;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.login_form{
    width: 24%;
    /* height: 281px; */
    border-radius: 17px;
    background: #fff;
    
}
.login_title{
    font-weight: 400;
    font-size: 38px;
    color: #2DA6F7;
    line-height: 107px;
    text-align: center;
    background: #F2F6F9;
    border-radius: 17px 17px 0 0;
}
.forms{
    padding: 35px 76px 40px;
}

.login_btn{
    /* display: flex;
    justify-content: space-around; */
    /* height: 47px;
    padding: 0 45px; */
}
.form_btn{
    /* line-height: 61px; */
    background:#2DA6F7 ;
    color: #fff;
    padding:14px 38px;
    border: none;
    width: 100%;
}
/* .layui-input, .layui-select, .layui-textarea{
    height: 55px;line-height: 55px;
} */
/* .btn1{
    float: left;
}
.btn2{
    float: right;
} */
.layui-form-item{
    position: relative;
}
.iconfont{
    position: absolute;
    top: 6px;
    left: 5px;
    z-index: 9;
    color: #D8D9DB;
}
.layui-input{
    text-indent: 1.5em;
    color: rgb(118, 118, 118);
}

.layui-input::placeholder{
    color: #D8D9DB;
    height: calc();
}
.layui-form-label{display: none;width: auto;}
.footer{
    position: fixed;
    bottom: 50px;
    
}
.footer a{
    color: #fff;
}

@media screen and (max-width:678px) {
    .login_banner{display: block;}
    .iconfont{display: none;}
    .login_form{
        width: 100%;
        border-radius: 43px 43px 0 0;
        margin-top: 167px;
        height: calc(100vh - 167px);
    }
    .forms{padding: 35px 23px 40px;}
    /* .login_btn{padding: 0 26px;} */
    .form_btn{
        padding: 11px 32px;
        border-radius: 17px;
    }
    .login_title{
        line-height: 86px;
        font-size: 27px;
        /* display: none; */
        position: absolute;
        top: 57px;
        background: none;
        color: #fff;
        left: 27px;
    }
    .btn2{margin-top: 10px;background: #EEEEEE;color:#333333 ;}
    .layui-input{
        border: none;
        border-bottom: 1px solid #eee;
        text-indent: 0;
    }
    .layui-form-label{display: block;}
    .footer a{color: #333333;}
    .footer{
        text-align: center;
        width: 100%;
        bottom: 30px;
    }
}