*{
    margin: 0;
    padding: 0;
}
body{
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #72EDF2, #5151E5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.formWrap{
    background: #fff;
}
.formNav{
    display: flex;
    justify-content: space-between;
    line-height: 40px;
    margin-top: 15px;
}
.formNav div{
    text-align: center;
    border-bottom: 2px solid #409eff;
    flex: 1;
    cursor: pointer;
}
.formNav div:first-child{
    border-bottom: 2px solid #000;
}
.form{
    padding: 30px 50px 30px 50px;
}
.form>div{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 25px;
}
.form>div>input{
    flex: 1;
    outline: none;
    border: none;
    border-bottom: 1px solid #000;
    text-indent: 5px;
}
.vcodeImg{
    width: 150px;
    margin-left: 5px;
    cursor: pointer;
}
.btn{
    width: 100%;
    height: 40px;
    background-color: #409eff;
    border-color: #409eff;
    color: #fff;
    justify-content: center !important;
    align-items: center;
}
.btn:hover{
    cursor: pointer;
    background: #66B1FF;
}
#form2{
    display: none;
}
#form3{
    display: none;
}