
:root {
  --primary: #0b3b66;
  --primary-dark: #082a4a;
  --accent: #c9a227;
  --bg: #f4f7fb;
}
body {
  background: var(--bg) !important;
  font-family: 'Inter', sans-serif;
}
.login-wrapper {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.login-card-modern {
  width: 100%;
  max-width: 1000px;
  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: 1;
  background: linear-gradient(135deg, var(--primary) 0%, #125195 100%);
  padding: 50px 40px;
  color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login-left::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.login-left h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.login-left p {
  opacity: 0.85;
  font-size: 15px;
  line-height: 1.6;
}
.login-feature {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.login-feature 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;
  padding: 50px 45px;
}
.login-right-header {
  margin-bottom: 32px;
}
.login-right-header h4 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.login-right-header span {
  color: #718096;
  font-size: 14px;
}
.form-group-modern {
  margin-bottom: 20px;
  position: relative;
}
.form-group-modern label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
  color: #fff;
  display: block;
}
.form-control-modern {
  width: 100%;
  border: 1.5px solid #cbd5e0;
  border-radius: 12px;
  padding: 13px 16px 13px 42px;
  font-size: 15px;
  transition: all 0.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;
  bottom: 13px;
  color: black;
  font-size: 18px;
}
.btn-login {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  margin-top: 10px;
}
.btn-login:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(11,59,102,0.25);
}
.btn-login:disabled { opacity: 0.6; }
.divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  color: #fff;
  font-size: 13px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.divider span { padding: 0 12px; }
.login-links {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.login-links a {
  font-size: 14px;
  font-weight: 500;
  color:#fff;
  text-decoration: none;
}
.login-links a:hover { text-decoration: underline; }
.video-note {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13.5px;
  margin-bottom: 24px;
}
.video-note a { color: var(--primary); font-weight: 600; }
.message { margin-bottom: 10px; }
.help-inline { color: #e53e3e; font-size: 12.5px; margin-top: 6px; display: block; }

.form-group-modern {
  margin-bottom: 20px;
  position: relative;
}
.form-group-modern label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
  color: #fff;
  display: block;
}
.input-wrapper {
  position: relative;
}
.form-control-modern {
  width: 100%;
  border: 1.5px solid #cbd5e0;
  border-radius: 12px;
  padding: 13px 16px 13px 42px;
  font-size: 15px;
  transition: all 0.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: 40%;
  transform: translateY(-50%);
  color: black;
  font-size: 18px;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .login-card-modern { flex-direction: column; }
  .login-left { padding: 30px 24px; }
  .login-right { padding: 30px 24px; }
  .login-left h2 { font-size: 24px; }
}