.loginMain{
    width: 100%;
    height: calc(100vh - 6rem);
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-main{
    width: 90%;
    max-width: 50rem;
    box-shadow: 0 0 1rem #999;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-sizing: border-box;
}
.form-main .form-title{
    font-size: 3rem;
    color: #fff;
    text-align: center;
    line-height: 1;
    font-weight: 700;
    /* padding-top: 2.5rem; */
}
.form-item{
    width: 100%;
    margin-top: 2rem;
}
.form-label{
    font-size: 1.4rem;
    color: #fff;
}
.form-body{
    width: 100%;
    position: relative;
    border: 1px solid #fff;
    border-radius: 1rem;
    margin-top: .5rem;
    position: relative;
}
.form-body label{
    position: absolute;
    left: 0;
    bottom: -2rem;
    font-size: 1.2rem;
    color: #d84545;
}
.form-body input{
    display: block;
    width: 100%;
    height: 4.5rem;
    outline: none;
    background: none;
    border: none;
    color: #FFF;
    font-size: 1.4rem;
    padding: 0 1.5rem;
    box-sizing: border-box;
}
.form-body>img{
    display: block;
    position: absolute;
    right: 1rem;
    width: 2rem;
    top: 50%;
    margin-top: -1rem;
}
.form-body>.seeIconON{
    display: none;
}
.form-code{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-code input{
    flex: 1;
}
.form-code button{
    display: block;
    margin-right: 1.5rem;
    height: 3rem;
    border: none;
    background: #f68315;
    cursor: pointer;
    border-radius: 1rem;
    color: #fff;
    font-size: 1.4rem;
    padding: 0 1.5rem;
    box-sizing: border-box;
}
.form-link{
    display: block;
    font-size: 1.4rem;
    margin-top: 2rem;
    color: #fff;
}
.form-link span{
    color: #4cdaa7;
}
.form-link-red{
    color: #ff0000;
}
.form-submit{
    margin-top: 1rem;
    width: 100%;
}
.form-submit button{
    display: block;
    width: 100%;
    border: none;
    cursor: pointer;
    height: 4.5rem;
    font-size: 1.6rem;
    color: #fff;
    background: #f68315;
    border-radius: 1rem;
}
.create-user{
    display: block;
    border-radius: 1rem;
    /* background: #fff; */
    font-size: 1.4rem;
    color: #fff;
    border: 1px solid #fff;
    height: 4rem;
    text-align: center;
    line-height: 4rem;
    margin-top: 1.5rem;
    transition: all .3s;
}
.create-user:hover{
    background: #fff;
    color: #f68315;
}