/* -----------------------
* FileName:style.css
* Website:http://me.mtyee.cn
* Auther:Mtyee
* -----------------------
*/
* {
    margin: 0;
    padding: 0;
}

.main {
    position: absolute;
    background-image: url('../image/back2.jpg');
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.left {
    width: 100%;
    height: 100%;
    background-color: rgba(243, 243, 243, 0);
    background-image: url();
}

.right {
    width: 48%;
    height: 94%;
    background-color: rgba(41, 41, 41, 0.7);
    box-shadow: 0 0 30px 6px rgb(80, 80, 80);
    margin-top: 20px;
    border-radius: 6px;
    position: absolute;
    z-index: 2;
    left: 26%;
    top: 0;
    /* position: relative; */
}

.login {
    width: 90%;
    height: 90%;
    margin: 0 auto;
    margin-top: 46px;
    background-image: url('../image/back2.jpg');
    background-position-x: right;
    background-position-y: -46px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.border {
    height: 80%;
    width: 80%;
    background: rgba(248, 248, 248, 0.8);
    border-radius: 10px;
    box-shadow: 0 -10px 10px 0px #8a7c70b6;
}

.top {
    background-image: url('../image/back2.jpg');
    background-repeat: no-repeat;
    background-position: top;
    height: 50%;
    width: 100%;
    border-radius: 6px 6px 0 0;
}

.bottom {
    height: 50%;
    width: 100%;
    border-radius: 6px;
    border-radius: 0 0 6px 6px;
}

.subform {
    border-radius: 6px;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    height: 40%;
    width: 50%;
    min-height: 300px;
}
.input_data{
    width: 70%;
    height: 100%;
    margin: 0 auto;
    margin-top: 30px;
}
input{
    margin: 0;
    margin-top: 10px;
    font-size: 16px;
    padding: 0 20px 0 20px;
    padding-left: 54px;
    height: 42px;
    box-sizing: border-box;
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(105, 87, 58,0.2);
    background-color: #ffffffe7;
    color: #6d5c4b;
}
input[type="checkbox"]{
    vertical-align:middle; 
    margin: 6px;
    width: 18px;
    margin-top: 10px;
}
label{
    display: block;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
}
.input_data>input:focus{
    outline: none;
}

.input_data>svg{
    border-right: 1px solid rgb(121, 121, 121,0.3);
    height: 22px;
    width: 22px;
    padding: 4px;
    padding-right: 6px;
    margin-top: 16px;
    display: inline-block;
    position: absolute;
    font-size: 14px;
    margin-left: 6px;
}

h2{
    margin-top: 20px;
    margin-left: 20px;
    color: #977349;
}
.but{
    width: 100%;
    height: 42px;
    font-size: 20px;
    display: block;
    margin-top: 20px;
    border-radius: 20px;
    border: none;
    background-color: rgb(105, 87, 58);
    color: white;
    letter-spacing: 10px;
    transition-duration: 0.4s;
}
.but:focus{
    outline: none;
}
.but:hover{
    background: #ddc8b1;
    transition-duration: 0.4s;
}
.left::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    background: url("/image/back2.jpg");
    filter: blur(5px);
    overflow: hidden;
}

@media screen and ( max-width: 980px ) {
    .right {
        width: 100%;
        left: 0%;
        background-color: rgba(247, 247, 247, 0);
    }
    .right::before{
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 0;
        background: url("/image/back2.jpg");
        filter: blur(3px);
        overflow: hidden;
    }
    .subform{
        width: 80%;
        height: 55%;
        background-color: #fff;
    }
    .input_data{
        width: 90%;
    }
}