:root { --primary:#0b3b66; --primary-dark:#082a4a; --accent:#c9a227; --bg:#f4f7fb; }
body { background:var(--bg) !important; font-family:'Inter', sans-serif; }
.login-wrapper { min-height:90vh; display:flex; align-items:center; justify-content:center; padding:30px 20px; }
.login-card-modern { width:100%; max-width:1100px; background:#fff; border-radius:24px; overflow:hidden; display:flex; box-shadow:0 20px 60px rgba(11,59,102,0.15); border:1px solid #e2e8f0; }
.login-left { flex:0.9; background:linear-gradient(135deg, var(--primary) 0%, #125195 100%); padding:50px 40px; color:white; display:flex; flex-direction:column; justify-content:center; }
.login-left h2 { font-size:32px; font-weight:700; margin-bottom:16px; }
.login-left p { opacity:.85; font-size:15px; line-height:1.6; }
.point { margin-top:28px; display:flex; gap:14px; }
.point i { width:40px; height:40px; background:rgba(255,255,255,0.15); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.login-right { flex:1.1; padding:40px 45px; background:#fff; }
.login-right-header h4 { font-weight:700; color:#1a202c; margin-bottom:6px; }
.login-right-header span { color:#718096; font-size:14px; }
.form-group-modern { margin-bottom:20px; }
.form-group-modern label { font-weight:500; font-size:13px; margin-bottom:8px; color:#2d3748; display:block; }
.input-wrapper { position:relative; }
.form-control-modern { width:100%; border:1.5px solid #cbd5e0; border-radius:12px; padding:13px 16px 13px 44px; font-size:15px; transition:.2s; }
.form-control-modern:focus { border-color:var(--primary); box-shadow:0 0 0 4px rgba(11,59,102,0.1); outline:none; }
.input-icon { position:absolute; left:14px; top:50%; transform:translateY(-50%); color:#a0aec0; font-size:18px; pointer-events:none; z-index:2; }
.help-inline { color:#e53e3e; font-size:12.5px; margin-top:6px; display:block; }
.note-box { background:#fffbeb; border:1px solid #fde68a; border-radius:12px; padding:12px 14px; font-size:13px; margin-bottom:18px; color:#744210; }
.btn-otp { background:var(--primary); color:#fff; border:none; padding:10px 18px; border-radius:10px; font-weight:600; font-size:13px; }
.btn-otp:hover { background:var(--primary-dark); }
.btn-change { background:#fff1f2; color:#e11d48; border:1.5px solid #fecdd3; padding:10px 18px; border-radius:10px; font-weight:600; font-size:13px; }
.btn-submit { width:100%; background:var(--accent); color:#1a202c; border:none; padding:13px; border-radius:12px; font-weight:700; font-size:15px; margin-top:10px; }
.btn-submit:hover { background:#b89320; }
.loaderBank { display:block; position:fixed; z-index:100; background-image:url('<?php echo base_url(); ?>assets/image/mvpmLoad.gif'); background-color:#666; opacity:.4; background-repeat:no-repeat; background-position:center; left:0; bottom:0; right:0; top:0; }
.divider { display:flex; align-items:center; margin:22px 0; color:#a0aec0; font-size:13px; }
.divider::before, .divider::after { content:''; flex:1; height:1px; background:#e2e8f0; }
.divider span { padding:0 12px; }

/* Professional 6 Box OTP - ONLY ADD THIS */
.otp-container { display:flex; gap:10px; justify-content:center; margin:10px 0; }
.otp-box { width:52px; height:52px; text-align:center; font-size:20px; font-weight:700; border:1.8px solid #cbd5e0; border-radius:12px; outline:none; transition:.2s; background:#fff; }
.otp-box:focus { border-color:var(--primary); box-shadow:0 0 0 4px rgba(11,59,102,0.1); }
.otp-box.filled { border-color:var(--primary); background:#f0f7ff; }
.otp-box.is-invalid { border-color:#e53e3e; }
@media(max-width:600px){ .otp-box{width:42px; height:46px; font-size:17px;} .otp-container{gap:6px;} }
@media(max-width:768px){ .login-card-modern{flex-direction:column;} .login-left,.login-right{padding:28px 22px;} }