html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}

.layoutl {
    height: 100%;
    background-image: -webkit-linear-gradient(to bottom, #12A19A, #6C50D3);
    background-image: linear-gradient(to bottom, #12A19A, #6C50D3);
}

.lmain {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.lform {
    direction: ltr;
    width: 250px;
    min-height: 400px;
    background-color: #E0F2F1;
    text-align: center;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    position: relative
}
.lform h1{
    color: #12A19A;
    font-size: 26px;
}

.lform .formg {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: start;
    background-color: #fff;
    margin: 7px 0;
    padding: 5px;
    border-radius: 3px;
}

.lform .formg span {
    margin: 0 10px;
    color: #12A19A;
}

.lform .formg input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    background-color: #fff;
    text-align: center
}
.reg{
    direction: inherit
}
.log{
    margin-bottom: 50px
}
.counter span{
    font-size: 14px;
    padding: 15px 15px;
    display: inline-block
}
.lbtn{
    width: 100%;
    background-color: #12A19A;
    border:1px #12A19A;
    line-height: 35px;
    outline: none;
    color: #fff;
    margin-top: 15px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}
.g{
    width: 100%;
    line-height: 35px;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #12A19A;
    margin-top:12px;
    font-size: 14px;
    border-radius: 3px;
}
.g:hover{
    background-color: #12A19A;
    color: #fff;
}
.lbtn{
    position: relative;
    min-height: 45px;
    cursor: pointer;
    transition: .3s;
}

.lbtn.loading{
    background: #999;
    cursor: not-allowed;
    opacity: .8;
}

.btn-loader{
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    display: inline-block;
    animation: spin .8s linear infinite;
    vertical-align: middle;
}

@keyframes spin{
    from{transform: rotate(0deg);}
    to{transform: rotate(360deg);}
}