/* ============================
   LOGIN PAGE
   ============================ */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #CCFBF1 0%, #E0F2FE 50%, #EDE9FE 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative bubbles */
.login-bg { position: fixed; inset: 0; pointer-events: none; }
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}
.b1 { width: 200px; height: 200px; background: var(--teal-l); top: -60px; left: -60px; animation-delay: 0s; }
.b2 { width: 140px; height: 140px; background: var(--coral-l); top: 20%; right: -40px; animation-delay: 2s; }
.b3 { width: 100px; height: 100px; background: var(--amber-l); bottom: 15%; left: 10%; animation-delay: 4s; }
.b4 { width: 180px; height: 180px; background: var(--violet-l); bottom: -60px; right: 10%; animation-delay: 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.login-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 420px;
  padding: 16px;
}

.login-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}
.logo-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

.login-header h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--teal-d);
  margin-bottom: 6px;
}
.login-header p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}
.login-header p span {
  display: inline-block;
  margin-top: 4px;
  background: var(--teal-l);
  color: var(--teal-d);
  padding: 2px 10px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap input {
  padding-left: 42px;
  padding-right: 42px;
}
.input-icon {
  position: absolute;
  left: 13px;
  font-size: 16px;
  pointer-events: none;
}
.toggle-pwd {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
}

.btn-login {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 16px;
  margin-top: 4px;
}

.login-footer {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 24px;
  line-height: 1.6;
}

@media (max-width: 440px) {
  .login-card { padding: 28px 20px; }
}
