*{
    margin: 0;
    padding: 0;
}
html,body{
    width: 100%;
    height: 100%;
}
div,p,span,label{
    box-sizing: border-box;
}
input{
    border: none;
}
#app{
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(top, #efc480 0%, #f8dca5 25%, white 98%);
    background: linear-gradient(180deg, #3f9bf5 0%, #8abdef 25%, white 98%);
    position: relative;
}
#app::before{
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('../img/bg.png');
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.logo{
    width: 100%;
    height: 200px;
    position: relative;
}
.logo>img{
    width: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,97%);
}
.con{
    width: 100%;
    padding: 0 30px;
}
.con>div{
    width: 100%;
    height: 60px;
    border-bottom: 0.5px solid rgba(208, 177, 123, 0.3);
    display: flex;
    align-items: center;
}
.con>div>span{
    font-size: 15px;
    color: #845708;
    width: 70px;
}
.con>div>input{
    font-size: 14px;
    width: calc(100% - 70px);
    height: 100%;
    background: none;
    color: inherit;
    opacity: 1;
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-align: inherit;
    text-indent: inherit;
    text-transform: inherit;
    text-shadow: inherit;
    outline: none;
}
.con>div>div{
    width: 100px;
    text-align: center;
    height: 20px;
    border-left: 1px solid #efc480;
    font-size: 14px;
    line-height: 20px;
    color: #845708;
}
.con>div>input::placeholder {
    color: #c8963d;
    font-size: 14px;
}
.xieyi{
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 30px;
}
.xieyi>div{
    font-size: 14px;
    color: #c8963d;
    margin-left: 10px;
}
.xieyi>div>a{
    color: #c8963d;
}
.reg,button{
    width: calc(100% - 60px);
    margin: 80px 0 0 30px;
    height: 40px;
    border-radius: 20px;
    background: -webkit-linear-gradient(left, #e9b461, #eecc89);
    background: linear-gradient(90deg, #e9b461, #eecc89);
    box-shadow: 0px 3px 3px 0px rgba(229, 138, 0, 0.22);
    color: #fff;
    border: none;
    outline: none;
}