/* ============================================================
   LOGIN - STYLES
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
.bps-login-body { font-family: 'Inter', 'Segoe UI', Roboto, sans-serif; min-height: 100vh; background: linear-gradient(135deg, #e5e6e9 0%, #1c1622 100%); display: flex; align-items: center; justify-content: center; padding: 20px; color: #fff; margin: 0; }
.bps-login-box { background: rgba(255,255,255,0.15); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-radius: 24px; border: 1px solid rgba(255,255,255,0.25); padding: 50px 40px; width: 100%; max-width: 420px; box-shadow: 0 25px 50px rgba(0,0,0,0.2); text-align: center; }
.bps-login-box .bps-login-header { margin-bottom: 35px; }
.bps-login-box .logo-link { display: inline-block; text-decoration: none; transition: transform 0.3s ease; }
.bps-login-box .logo-link:hover { transform: translateY(-4px); }
.bps-login-box .login-logo { max-width: 180px; width: auto; height: auto; margin-bottom: 20px; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2)); }
.bps-login-box .bps-login-header h2 { font-size: 26px; font-weight: 600; margin: 0; color: #fff; }
.bps-login-box .bps-login-header p { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 8px; }
.bps-login-box .error-message { background: rgba(239,68,68,0.2); border-left: 4px solid #ef4444; padding: 12px 16px; border-radius: 12px; margin-bottom: 24px; color: #fecaca; font-size: 14px; text-align: left; }
.bps-login-box .info-message { background: rgba(59,130,246,0.2); border-left: 4px solid #3b82f6; padding: 12px 16px; border-radius: 12px; margin-bottom: 24px; color: #bfdbfe; font-size: 13px; text-align: left; }
.bps-login-box .info-message.warning { background: rgba(234,179,8,0.2); border-left-color: #eab308; color: #fde68a; }
.bps-login-box .form-group { margin-bottom: 20px; text-align: left; }
.bps-login-box .form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: #fff; }
.bps-login-box input[type="text"], .bps-login-box input[type="password"] { width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 12px; color: #fff; font-size: 15px; transition: all 0.3s ease; box-sizing: border-box; }
.bps-login-box input::placeholder { color: rgba(255,255,255,0.5); }
.bps-login-box input:focus { outline: none; background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); box-shadow: 0 0 0 3px rgba(255,255,255,0.1); }
.bps-login-box .checkbox-group { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; justify-content: flex-start; }
.bps-login-box .checkbox-group label { margin-bottom: 0; font-size: 13px; color: rgba(255,255,255,0.8); cursor: pointer; }
.bps-login-box .checkbox-group input[type="checkbox"] { width: 16px; height: 16px; accent-color: #800020; cursor: pointer; }
.bps-login-box .login-btn { width: 100%; padding: 14px; background: #800020; color: #fff; font-size: 16px; font-weight: 600; border: none; border-radius: 12px; cursor: pointer; transition: all 0.3s ease; }
.bps-login-box .login-btn:hover { background: #a00030; transform: translateY(-2px); }
.bps-login-box .cancel-link { display: inline-block; margin-top: 20px; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.bps-login-box .cancel-link:hover { color: #fff; text-decoration: underline; }
.bps-login-box .contact-admin { display: inline-block; margin-top: 12px; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 12px; }
.bps-login-box .contact-admin:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 480px) { .bps-login-box { padding: 30px 20px; } .bps-login-box .bps-login-header h2 { font-size: 22px; } .bps-login-box .login-logo { max-width: 140px; } }