/* LOGIN SIMPLE */
.login-simple{
    padding:16px;
    color:#fff;
    text-shadow:
        0 1px 2px #000,
        0 2px 4px rgba(0,0,0,.8);
}

/* TEXT */
.login-text{
    text-align:center;
    font-size:16px;
    margin-bottom:18px;
}

/* INPUT */
.login-input{
    width:100%;
    height: 45px;
    padding:16px;
    margin-bottom:14px;
    border:none;
    border-radius:10px;
    font-size:16px;
    outline:none;
    color:#555;
}

/* OPTIONS */
.login-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
    margin-bottom:20px;
}

.show-pass input{
    margin-right:6px;
}

.lite-mode{
    color:#fff;
    text-decoration:underline;
}

/* BUTTON */
.login-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:30px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    color:#2F2B2A;
   border:3px solid transparent;
    background:
      linear-gradient(#f7d17b,#c9962e) padding-box,
      linear-gradient(
        to bottom,
        #757575 0%,
        #494949 50%,
        #000 100%
      ) border-box;
}



/* REGISTER BOX */
.register-box{
    margin:10px;
    padding:14px;
    border-radius:12px;
    background:rgba(0,0,0,.6);
    border:0.5px solid #d4a640;
    box-shadow:0 0 10px rgba(212,166,64,.4);
    color:#fff;
}

/* TITLE */
.reg-title{
    margin:0;
    font-size:22px;
}

.reg-subtitle{
    margin:10px 0;
    font-size:18px;
}

.reg-line{
    border:none;
    border-top:1px solid rgba(255,255,255,.3);
    margin:12px 0;
}

/* ROW */
.reg-row{
    display:grid;
    grid-template-columns:40% 60%;
    align-items:center;
    margin-bottom:10px;
}

.reg-row label{
    font-size:14px;
}

.reg-row label span{
    color:red;
}

/* INPUT */
.reg-row input,
.reg-row select{
    width:100%;
    padding:10px;
    border-radius:6px;
    border:none;
    outline:none;
    font-size:14px;
}

/* PHONE */
.phone-group{
    display:flex;
}

.phone-group .kode{
    background:#f6a400;
    color:#000;
    padding:10px;
    border-radius:6px 0 0 6px;
    font-weight:bold;
}

.phone-group input{
    border-radius:0 6px 6px 0;
}

/* CAPTCHA */
.captcha-group{
    display:flex;
    align-items:center;
    gap:8px;
}

.captcha-group img{
    height:40px;
    border-radius:6px;
}

.captcha-group button{
    height:40px;
    width:40px;
    border:none;
    border-radius:6px;
    background:#f6a400;
    font-size:18px;
}

/* CHECKBOX */
.reg-check{
    font-size:13px;
    margin:8px 0;
}

.reg-check input{
    margin-right:6px;
}

/* BUTTON */
.btn-register{
    width:100%;
    height: 50px;
    padding:14px;
    margin-top:12px;
    border:none;
    border-radius:30px;
    border:3px solid transparent;
    background:
      linear-gradient(#ff4b4b,#b30000) padding-box,
      linear-gradient(
        to bottom,
        #FFE77B 0%,
        #D6960E 100%
      ) border-box;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    color: #fff;
}