body {
  background-color: #f0f6fc;
  font-family: 'Rubik', sans-serif;
  color: #1e293b;
  overflow-x: hidden;
}

.login-register {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 0;
  position: relative;
  background: radial-gradient(circle at top left, rgba(2, 132, 199, 0.12) 0%, transparent 50%),
    radial-gradient(circle at bottom right, rgba(3, 105, 161, 0.08) 0%, transparent 50%);
}

/* BRANDING DI LUAR CARD */
.brand-outside {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.brand-outside img {
  height: 48px;
  margin-right: 12px;
}

.hero-title-outside {
  font-size: 34px;
  font-weight: 700;
  color: #0284c7;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 8px;
}

.hero-subtitle-outside {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* KARTU BIRU AKSES PUBLIK */
.public-card-blue {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 60%, #0f172a 100%);
  border-radius: 20px;
  padding: 30px;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-public {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.public-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 8px;
}

.public-card-desc {
  font-size: 13px;
  color: #bae6fd;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Stacked Action Box di Dalam Card Publik */
.public-action-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none !important;
  color: #ffffff;
  transition: all 0.3s ease;
}

.public-action-box:hover {
  background: #ffffff;
  color: #0284c7;
  transform: translateX(6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.public-action-box .action-title {
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.public-action-box .action-sub {
  font-size: 12px;
  opacity: 0.8;
}

.public-action-box:hover .action-sub {
  color: #64748b;
}

/* KARTU FORM LOGIN (KANAN) */
.login-card-white {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.08);
  padding: 40px 35px;
}

.login-header-title {
  font-size: 22px;
  font-weight: 700;
  color: #0284c7;
  text-align: center;
  margin-bottom: 6px;
}

.login-header-sub {
  font-size: 13px;
  color: #64748b;
  text-align: center;
  margin-bottom: 25px;
}

.input-with-icon {
  position: relative;
  margin-bottom: 16px;
}

.input-with-icon i {
  position: absolute;
  left: 16px;
  top: 17px;
  color: #0284c7;
  font-size: 14px;
  z-index: 5;
}

.form-control-modern {
  height: 48px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding-left: 42px;
  font-size: 14px;
  color: #1e293b;
  box-shadow: none;
  transition: all 0.2s;
}

.form-control-modern:focus {
  background-color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.btn-login-blue {
  background: #0284c7;
  color: #ffffff;
  height: 48px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  width: 100%;
  border: none;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  transition: background 0.2s;
}

.btn-login-blue:hover {
  background: #0369a1;
  color: #ffffff;
}

.divider-text {
  display: flex;
  align-items: center;
  text-align: center;
  color: #94a3b8;
  font-size: 12px;
  margin: 20px 0;
}

.divider-text::before,
.divider-text::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.divider-text::before {
  margin-right: .75em;
}

.divider-text::after {
  margin-left: .75em;
}

.btn-outline-custom {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
  height: 46px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 13px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  text-decoration: none !important;
}

.btn-outline-custom:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #1e293b;
}