:root {
  --sky-top: #1a1a2e;
  --sky-mid: #16213e;
  --sky-bottom: #0f3460;
  --sun-glow: rgba(255, 200, 100, 0.6);
  --sun-color: #ffd166;
  --hills-far: #6a994e;
  --hills-mid: #7cb35a;
  --hills-near: #8fbc65;
  --hills-closest: #a1c971;
  --ground: #5c8a44;
  --ground-dark: #4a7535;
  --fence-color: #8b5a2b;
  --cow-spot: #2b2b2b;
  --cow-body: #f5f0e8;
}

.login-logo img {
  max-width: 100px;
  height: auto;
}

.login-page .village-scene {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  animation: sky-cycle 60s ease-in-out infinite alternate;
}

/* ===== SKY ===== */
.village-sky {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 30%, #0f3460 55%, #e2725b 78%, #f4a261 88%, #e9c46a 100%);
  animation: sky-cycle 60s ease-in-out infinite alternate;
}

@keyframes sky-cycle {
  0% { background: linear-gradient(180deg, #1a1a2e 0%, #16213e 30%, #0f3460 55%, #e2725b 78%, #f4a261 88%, #e9c46a 100%); }
  30% { background: linear-gradient(180deg, #2d4a7a 0%, #4a7ab5 30%, #87ceeb 55%, #f4d35e 78%, #f6bd60 88%, #faf0ca 100%); }
  60% { background: linear-gradient(180deg, #4a90d9 0%, #87ceeb 30%, #b8e6f0 55%, #f9d371 78%, #f7c35c 88%, #f2e8cf 100%); }
  100% { background: linear-gradient(180deg, #2d6a9f 0%, #5b9bd5 30%, #a8d8ea 55%, #f4d35e 78%, #f6bd60 88%, #faf0ca 100%); }
}

/* ===== SUN ===== */
.village-sun {
  position: absolute;
  bottom: 42%;
  right: 15%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #fff7e0 0%, #ffd166 40%, rgba(255, 200, 100, 0) 70%);
  border-radius: 50%;
  box-shadow: 0 0 80px 30px var(--sun-glow), 0 0 150px 60px rgba(255, 200, 100, 0.2);
  animation: sunrise-glow 60s ease-in-out infinite alternate;
}

@keyframes sunrise-glow {
  0% { transform: translateY(40px) scale(0.8); opacity: 0.3; box-shadow: 0 0 40px 15px rgba(255, 200, 100, 0.2); }
  30% { transform: translateY(10px) scale(1); opacity: 0.8; box-shadow: 0 0 80px 30px rgba(255, 200, 100, 0.3); }
  60% { transform: translateY(-20px) scale(1.1); opacity: 1; box-shadow: 0 0 100px 40px rgba(255, 200, 100, 0.4); }
  100% { transform: translateY(-30px) scale(1.15); opacity: 0.9; box-shadow: 0 0 90px 35px rgba(255, 200, 100, 0.35); }
}

/* ===== MOUNTAINS ===== */
.mountains {
  position: absolute;
  bottom: 32%;
  width: 100%;
  height: 25%;
  z-index: 1;
}

.mountain-range {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.mountain {
  position: absolute;
  bottom: 0;
  border-radius: 0;
}

.mountain-1 {
  left: -5%;
  width: 35%;
  height: 85%;
  background: linear-gradient(180deg, #5a7a4a 0%, #4a6a3a 100%);
  clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
  opacity: 0.6;
}

.mountain-2 {
  left: 20%;
  width: 40%;
  height: 100%;
  background: linear-gradient(180deg, #6a8a5a 0%, #5a7a4a 100%);
  clip-path: polygon(0% 100%, 35% 5%, 65% 5%, 100% 100%);
  opacity: 0.5;
}

.mountain-3 {
  right: 0%;
  width: 50%;
  height: 90%;
  background: linear-gradient(180deg, #4a6a3a 0%, #3a5a2a 100%);
  clip-path: polygon(20% 100%, 55% 8%, 100% 100%);
  opacity: 0.55;
}

.mountain-4 {
  left: 40%;
  width: 30%;
  height: 70%;
  background: linear-gradient(180deg, #7a9a6a 0%, #6a8a5a 100%);
  clip-path: polygon(0% 100%, 50% 10%, 100% 100%);
  opacity: 0.45;
}

/* ===== HILLS ===== */
.hills {
  position: absolute;
  bottom: 12%;
  width: 100%;
  height: 28%;
  z-index: 2;
}

.hill {
  position: absolute;
  bottom: 0;
  border-radius: 50% 50% 0 0;
}

.hill-far {
  left: -10%;
  width: 60%;
  height: 80%;
  background: linear-gradient(180deg, #7cb35a 0%, #6a9e4a 100%);
  border-radius: 40% 60% 0 0;
  opacity: 0.7;
}

.hill-mid {
  right: -5%;
  width: 55%;
  height: 70%;
  background: linear-gradient(180deg, #8fbc65 0%, #7cb35a 100%);
  border-radius: 50% 40% 0 0;
  opacity: 0.8;
}

.hill-near {
  left: 20%;
  width: 70%;
  height: 60%;
  background: linear-gradient(180deg, #a1c971 0%, #8fbc65 100%);
  border-radius: 30% 70% 0 0;
  opacity: 0.9;
}

.hill-closest {
  right: 10%;
  width: 50%;
  height: 50%;
  background: linear-gradient(180deg, #b5d98a 0%, #a1c971 100%);
  border-radius: 60% 30% 0 0;
}

/* ===== RICE PADDIES ===== */
.rice-paddies {
  position: absolute;
  bottom: 12%;
  width: 100%;
  height: 25%;
  z-index: 3;
}

.paddy {
  position: absolute;
  bottom: 0;
  border-radius: 50% 50% 0 0;
  overflow: hidden;
}

.paddy-1 {
  left: 5%;
  width: 25%;
  height: 50%;
  background: repeating-linear-gradient(
    0deg,
    #6a9a3a 0px,
    #6a9a3a 3px,
    #7aaa4a 3px,
    #7aaa4a 6px
  );
  border-radius: 40% 60% 0 0;
  opacity: 0.6;
}

.paddy-2 {
  right: 15%;
  width: 20%;
  height: 40%;
  background: repeating-linear-gradient(
    0deg,
    #5a8a2a 0px,
    #5a8a2a 3px,
    #6a9a3a 3px,
    #6a9a3a 6px
  );
  border-radius: 50% 40% 0 0;
  opacity: 0.5;
}

/* ===== GROUND ===== */
.village-ground {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 15%;
  background: linear-gradient(180deg, #7aaa4a 0%, #5c8a44 40%, #4a7535 100%);
  z-index: 4;
}

/* ===== GRASS BLADES (animated) ===== */
.grass-blade {
  position: absolute;
  bottom: 0;
  width: 4px;
  height: 40px;
  background: linear-gradient(180deg, transparent 0%, #6a9a3a 100%);
  border-radius: 50% 50% 0 0;
  transform-origin: bottom center;
  animation: sway 3s ease-in-out infinite;
}

.grass-blade:nth-child(1) { left: 10%; height: 35px; animation-delay: 0s; }
.grass-blade:nth-child(2) { left: 15%; height: 45px; animation-delay: 0.5s; }
.grass-blade:nth-child(3) { left: 22%; height: 30px; animation-delay: 0.2s; }
.grass-blade:nth-child(4) { left: 35%; height: 50px; animation-delay: 0.8s; }
.grass-blade:nth-child(5) { left: 42%; height: 38px; animation-delay: 0.3s; }
.grass-blade:nth-child(6) { left: 55%; height: 42px; animation-delay: 1.0s; }
.grass-blade:nth-child(7) { left: 65%; height: 35px; animation-delay: 0.6s; }
.grass-blade:nth-child(8) { left: 75%; height: 48px; animation-delay: 0.1s; }
.grass-blade:nth-child(9) { left: 82%; height: 32px; animation-delay: 0.9s; }
.grass-blade:nth-child(10) { left: 90%; height: 40px; animation-delay: 0.4s; }
.grass-blade:nth-child(11) { left: 48%; height: 36px; animation-delay: 0.7s; }
.grass-blade:nth-child(12) { left: 60%; height: 44px; animation-delay: 1.1s; }

@keyframes sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

/* ===== CLOUDS ===== */
.cloud-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 1;
  pointer-events: none;
}

.village-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  animation: cloud-drift linear infinite;
}

.village-cloud::before,
.village-cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.village-cloud-1 {
  top: 8%;
  width: 200px;
  height: 25px;
  animation-duration: 90s;
  animation-delay: -10s;
}
.village-cloud-1::before {
  width: 60px;
  height: 35px;
  left: 40px;
  top: -18px;
}
.village-cloud-1::after {
  width: 90px;
  height: 45px;
  right: 40px;
  top: -22px;
}

.village-cloud-2 {
  top: 15%;
  width: 160px;
  height: 20px;
  animation-duration: 110s;
  animation-delay: -30s;
}
.village-cloud-2::before {
  width: 50px;
  height: 30px;
  left: 30px;
  top: -15px;
}
.village-cloud-2::after {
  width: 70px;
  height: 35px;
  right: 30px;
  top: -18px;
}

.village-cloud-3 {
  top: 5%;
  width: 180px;
  height: 22px;
  animation-duration: 75s;
  animation-delay: -50s;
}
.village-cloud-3::before {
  width: 55px;
  height: 32px;
  left: 35px;
  top: -16px;
}
.village-cloud-3::after {
  width: 80px;
  height: 40px;
  right: 35px;
  top: -20px;
}

@keyframes cloud-drift {
  0% { transform: translateX(-250px); }
  100% { transform: translateX(calc(100vw + 250px)); }
}

/* ===== VILLAGE ELEMENTS (SVG Container) ===== */
.village-elements {
  position: absolute;
  bottom: 12%;
  left: 0;
  width: 100%;
  height: 30%;
  z-index: 5;
  pointer-events: none;
}

/* ===== FENCE ===== */
.village-fence {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 6;
  pointer-events: none;
}

.fence-rail {
  position: absolute;
  bottom: 18px;
  width: 100%;
  height: 3px;
  background: var(--fence-color);
  box-shadow: 0 10px 0 var(--fence-color);
}

.fence-post {
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 35px;
  background: var(--fence-color);
  border-radius: 2px 2px 0 0;
}

.fence-post:nth-child(2) { left: 5%; }
.fence-post:nth-child(3) { left: 15%; }
.fence-post:nth-child(4) { left: 25%; }
.fence-post:nth-child(5) { left: 35%; }
.fence-post:nth-child(6) { left: 55%; }
.fence-post:nth-child(7) { left: 65%; }
.fence-post:nth-child(8) { left: 75%; }
.fence-post:nth-child(9) { left: 85%; }
.fence-post:nth-child(10) { left: 95%; }

/* ===== LOGIN BOX ===== */
.login-box {
  z-index: 20;
  width: 420px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .login-box {
    width: 92%;
    max-width: 400px;
  }
}

.login-box .card {
  background: rgba(20, 35, 25, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: card-float 6s ease-in-out infinite;
  padding: 0.5rem;
}

@supports (backdrop-filter: blur(24px)) or (-webkit-backdrop-filter: blur(24px)) {
  .login-box .card {
    background: rgba(20, 35, 25, 0.25);
  }
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.login-box .card-body {
  padding: 2rem 2rem 1.5rem;
}

.login-logo {
  margin-bottom: 1.5rem;
}

.login-logo img {
  border-radius: 50%;
  padding: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(255, 200, 100, 0.2);
  transition: all 0.3s ease;
}

.login-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 200, 100, 0.4);
}

/* ===== FORM STYLES ===== */
.login-box .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  height: auto;
}

.login-box .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(161, 201, 113, 0.6);
  box-shadow: 0 0 0 3px rgba(161, 201, 113, 0.15);
  color: #fff;
}

.login-box .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.login-box .input-group-text {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.login-box .input-group .form-control {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.login-box .input-group .input-group-text {
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.login-box .input-group:focus-within .input-group-text {
  border-color: rgba(161, 201, 113, 0.6);
  color: rgba(161, 201, 113, 0.8);
}

.login-box .btn-primary {
  background: linear-gradient(135deg, #4a7a3a 0%, #6a9a4a 100%);
  border: none;
  border-radius: 12px;
  padding: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 122, 58, 0.3);
}

.login-box .btn-primary:hover {
  background: linear-gradient(135deg, #3a6a2a 0%, #5a8a3a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 122, 58, 0.4);
}

.login-box .btn-primary:active {
  transform: translateY(0);
}

.login-box .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.login-box .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.login-box .btn-success {
  background: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%);
  border: none;
  border-radius: 12px;
  padding: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.login-box .btn-success:hover {
  background: linear-gradient(135deg, #1b5a3f 0%, #30815c 100%);
  transform: translateY(-2px);
}

.login-box a {
  color: rgba(161, 201, 113, 0.9);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
}

.login-box a:hover {
  color: #a1c971;
  text-decoration: underline;
}

.login-box .card hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.login-box .text-center {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== CAPTCHA STYLING ===== */
.login-box .input-group .captcha img,
.login-box .input-group img.captcha {
  border-radius: 12px;
  height: 49px;
}

/* ===== ALERTS ===== */
.login-box .alert {
  border-radius: 12px;
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #f8d7da;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
}

/* ===== SHOW PASSWORD ICON ===== */
.login-box .input-group-text[onclick] {
  cursor: pointer;
}

.login-box .input-group-text[onclick]:hover {
  color: rgba(161, 201, 113, 0.8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .login-box {
    width: 92%;
    max-width: 400px;
  }

  .login-box .card-body {
    padding: 1.5rem 1.25rem;
  }

  .village-sun {
    width: 60px;
    height: 60px;
    right: 10%;
    bottom: 45%;
  }

  .village-cloud-1 { width: 140px; height: 18px; }
  .village-cloud-2 { width: 110px; height: 15px; }
  .village-cloud-3 { width: 120px; height: 16px; }

  .mountain-1 { height: 60%; }
  .mountain-2 { height: 70%; }
  .mountain-3 { height: 65%; }

  .house-1 { width: 70px; height: 60px; left: 5%; bottom: 55%; }
  .house-2 { width: 55px; height: 48px; left: 18%; bottom: 50%; }
  .tree-1 { width: 30px; height: 70px; right: 12%; bottom: 42%; }
  .tree-2 { width: 25px; height: 60px; right: 22%; bottom: 40%; }
  .village-cow.cow-main { width: 80px; height: 48px; right: 8%; bottom: 22%; }
  .village-cow.calf { width: 55px; height: 35px; right: 28%; bottom: 20%; }
}

/* ===== VILLAGE ELEMENTS POSITIONING ===== */
.village-house {
  position: absolute;
  pointer-events: none;
  overflow: visible;
}

.house-1 {
  bottom: 58%;
  left: 8%;
  width: 100px;
  height: 85px;
  z-index: 5;
}

.house-2 {
  bottom: 52%;
  left: 22%;
  width: 80px;
  height: 68px;
  z-index: 4;
  opacity: 0.85;
}

.village-tree {
  position: absolute;
  pointer-events: none;
  overflow: visible;
}

.tree-1 {
  bottom: 45%;
  right: 18%;
  width: 45px;
  height: 100px;
  z-index: 6;
  animation: tree-sway 4s ease-in-out infinite;
  transform-origin: bottom center;
}

.tree-2 {
  bottom: 42%;
  right: 28%;
  width: 38px;
  height: 85px;
  z-index: 5;
  animation: tree-sway 5s ease-in-out infinite 0.5s;
  transform-origin: bottom center;
}

@keyframes tree-sway {
  0%, 100% { transform: rotate(-1deg); }
  50% { transform: rotate(1.5deg); }
}

.village-cow {
  position: absolute;
  pointer-events: none;
  overflow: visible;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.village-cow.cow-main {
  bottom: 25%;
  right: 15%;
  width: 120px;
  height: 70px;
  z-index: 7;
  animation: cow-breathe 3s ease-in-out infinite;
}

.village-cow.calf {
  bottom: 23%;
  right: 32%;
  width: 80px;
  height: 50px;
  z-index: 7;
  animation: cow-breathe 3.5s ease-in-out infinite 0.5s;
}

@keyframes cow-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.cow-tail {
  animation: tail-wag 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes tail-wag {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
}

.milk-bucket {
  animation: bucket-gleam 4s ease-in-out infinite;
}

@keyframes bucket-gleam {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* ===== OVERRIDE ADMINLTE ===== */
body.login-page {
  background-color: transparent !important;
  height: 100vh;
  overflow: hidden;
}

.village-scene {
  overflow: hidden;
}

/* ===== REGISTER BOX ===== */
.register-box {
  z-index: 20;
  width: 520px;
}

.register-box .card {
  background: rgba(20, 35, 25, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: card-float 6s ease-in-out infinite;
  padding: 0.5rem;
}

@supports (backdrop-filter: blur(24px)) or (-webkit-backdrop-filter: blur(24px)) {
  .register-box .card {
    background: rgba(20, 35, 25, 0.25);
  }
}

.register-box .card-body {
  padding: 2rem 2rem 1.5rem;
}

.register-box .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  height: auto;
}

.register-box .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(161, 201, 113, 0.6);
  box-shadow: 0 0 0 3px rgba(161, 201, 113, 0.15);
  color: #fff;
}

.register-box .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.register-box .input-group-text {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1rem;
}

.register-box .input-group .form-control {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.register-box .input-group .input-group-text {
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.register-box .input-group:focus-within .input-group-text {
  border-color: rgba(161, 201, 113, 0.6);
  color: rgba(161, 201, 113, 0.8);
}

.register-box .btn-primary {
  background: linear-gradient(135deg, #4a7a3a 0%, #6a9a4a 100%);
  border: none;
  border-radius: 12px;
  padding: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 122, 58, 0.3);
}

.register-box .btn-primary:hover {
  background: linear-gradient(135deg, #3a6a2a 0%, #5a8a3a 100%);
  transform: translateY(-2px);
}

.register-box a {
  color: rgba(161, 201, 113, 0.9);
  transition: all 0.3s ease;
  text-decoration: none;
}

.register-box a:hover {
  color: #a1c971;
  text-decoration: underline;
}

.register-box hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.register-box .text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
}

.register-box .form-check-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.register-box .form-check-input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.register-box .form-check-input:checked {
  background-color: #6a9a4a;
  border-color: #6a9a4a;
}

.register-box .alert {
  border-radius: 12px;
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #f8d7da;
}

.register-box .register-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.register-box .register-logo a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  font-weight: 700;
}

.register-box .login-box-msg {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ===== ALERT SUCCESS ===== */
.login-box .alert-success,
.register-box .alert-success {
  border-radius: 12px;
  background: rgba(45, 106, 79, 0.15);
  border: 1px solid rgba(45, 106, 79, 0.3);
  color: #d4edda;
}

.login-box .alert-info,
.register-box .alert-info {
  border-radius: 12px;
  background: rgba(23, 162, 184, 0.15);
  border: 1px solid rgba(23, 162, 184, 0.3);
  color: #d1ecf1;
}

/* ===== PASSWORD STRENGTH ===== */
#password-strength-status .progress {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

#password-strength-status .progress-bar {
  border-radius: 10px;
}

/* ===== MODAL OVERRIDE ===== */
.modal-content {
  background: rgba(30, 40, 30, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header .btn-close {
  filter: invert(1) brightness(200%);
}

/* ===== TYPOGRAPHY ===== */
.login-box-msg {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
