*{
    margin: 0;
    padding: 0;
}
.bgImg{
    width: 100%;
    height: 100vh;
    background-image: url(../img/lunbo-5.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.loginBox{
    width: 400px;
    min-height: 250px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.text{
    width: 80%;
    margin: 20px auto 20px;
    
}
.account{
    height: 60px;
    /* margin-bottom: 20px; */
    /* display: grid;
    grid-template-columns: auto 1fr;
    align-items: center; */
}

.account > div {
    display: grid;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
}
.account > p {
    font-size: 12px;
    color: red;
    text-align: end;
    margin-top: 5px;
}
.account input{
    height: 30px;
    border-radius: 10px;
    border: 1px solid #1677ff;
    padding: 0px 10px;
}
.account input:focus{
    outline: none;
}
.free{
    display: flex;
    justify-content: center;
}
.free button {
    font-size: 16px;
    width: 100%;
    border: 0;
    background-color: #1677ff;
    color: #fff;
    padding: 5px 0;
    border-radius: 50px;
    margin-bottom: 20px;

}
.register{
    width: 100%;
    display: flex;
    justify-content: end;
   
}
.register a{
    text-decoration: none;
    color: #1677ff;
}
.title{
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
}