body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#f4f6f9; /* biar lebih soft dari putih polos */
overflow-x:hidden;
}

/* CONTAINER */
.container{
display:flex;
align-items:center;
justify-content:center;
min-height:100vh;
padding:20px;
box-sizing:border-box;
}

/* RIGHT */
.right{
display:flex;
justify-content:center;
width:100%;
}

/* BOX LOGIN STYLE */
.login-box{
background:#f5f7ff;
padding:30px;
width:100%;
max-width:360px;
border-radius:16px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
text-align:center;
transition:0.3s;
}

/* sedikit animasi */
.login-box:hover{
transform:translateY(-2px);
}

/* TITLE */
.login-title{
font-size:22px;
font-weight:bold;
margin-top:5px;
}

.subtitle{
font-size:13px;
color:#6b7280;
margin-bottom:15px;
}

/* INPUT */
.input-group{
text-align:left;
margin-bottom:14px;
}

.input-group label{
font-size:14px;
display:block;
margin-bottom:4px;
}

.input-group input{
width:100%;
padding:12px;
border:1px solid #ccc;
border-radius:8px;
margin-top:4px;
font-size:14px;
box-sizing:border-box;
transition:0.2s;
}

/* efek focus */
.input-group input:focus{
border-color:#2563eb;
outline:none;
box-shadow:0 0 0 2px rgba(37,99,235,0.2);
}

/* EMAIL KHUSUS (kalau nanti mau readonly) */
.email-lock{
background:#f1f3f6;
color:#9ca3af;
cursor:not-allowed;
}

/* PASSWORD */
.password-box{
position:relative;
}

.password-box input{
padding-right:40px;
}

.eye{
position:absolute;
right:12px;
top:50%;
transform:translateY(-50%);
cursor:pointer;
width:18px;
opacity:0.6;
}

.eye:hover{
opacity:1;
}

/* BUTTON */
.login-btn{
width:100%;
padding:12px;
background:#2563eb;
color:white;
border:none;
border-radius:8px;
margin-top:12px;
cursor:pointer;
font-size:14px;
transition:0.2s;
}

.login-btn:hover{
background:#1d4ed8;
}

.login-btn:active{
transform:scale(0.98);
}

/* LINK */
.forgot{
text-align:center;
font-size:13px;
margin-top:12px;
}

.forgot a{
text-decoration:none;
color:#2563eb;
}

.forgot a:hover{
text-decoration:underline;
}

.success-message{
    background:#d4edda;
    color:#155724;
    padding:12px;
    border-radius:8px;
    margin-bottom:15px;
    text-align:center;
    border:1px solid #c3e6cb;
}

.error-message{
    background:#f8d7da;
    color:#721c24;
    padding:12px;
    border-radius:8px;
    margin-bottom:15px;
    text-align:center;
    border:1px solid #f5c6cb;
}

/* ================= MOBILE ================= */
@media (max-width:768px){

.login-box{
    max-width:320px;
    padding:20px;
}

.login-title{
    font-size:20px;
}

}

/* ================= DESKTOP BESAR ================= */
@media (min-width:1024px){

.login-box{
    max-width:420px;
    padding:45px;
}

.login-title{
    font-size:26px;
}

.input-group input{
    padding:16px;
    font-size:16px;
}

.login-btn{
    padding:16px;
    font-size:16px;
    }
}

@media (max-width:768px){

.otp-box input{
    width:150px;
    font-size:22px;
    letter-spacing:6px;
}

}