/* ═══════════════════════════════════════════════════════════════════════════
   imedi.health CRM — Login Page Styles
═══════════════════════════════════════════════════════════════════════════ */

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 60%, #0d6b61 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative background orbs */
.login-page::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,138,122,0.15) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}
.login-page::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,168,151,0.1) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
}

.login-card {
  background: white;
  border-radius: 20px;
  padding: 40px 44px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 32px 100px rgba(0,0,0,0.35);
  position: relative;
  z-index: 1;
}

.login-brand {
  text-align: center;
  margin-bottom: 32px;
}
.login-brand .logo-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 26px;
  color: white;
  box-shadow: 0 8px 24px rgba(13,138,122,0.35);
}
.login-brand h1 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.login-brand p {
  font-size: 12px;
  color: var(--text3);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.login-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.login-sub {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 24px;
}

.btn-login {
  width: 100%;
  padding: 11px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: white;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.btn-login:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(13,138,122,0.35); }
.btn-login:active { transform: translateY(0); }
.btn-login:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.login-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 14px;
  display: none;
  align-items: center;
  gap: 8px;
}
.login-error.show { display: flex; }

.login-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 11px;
  color: var(--text3);
}
