/* Modern Typography */
body {
  padding-top: 0 !important;
  font-family: 'Inter', sans-serif;
}

/* Modern Vintage Background */
.modern-retro-bg {
  min-height: 100vh;
  background-color: #E2E8F0;
  background-image: radial-gradient(#CBD5E1 1px, transparent 1px);
  background-size: 20px 20px;
  padding-bottom: 4em;
}

/* Header Text */
.login-header-text h1 {
  font-weight: 800;
  color: #1E293B;
  letter-spacing: 2px;
  margin-bottom: 0.2rem;
  text-shadow: 2px 2px 0px #CBD5E1;
}

.login-header-text h3 {
  font-weight: 600;
  color: #475569;
  letter-spacing: 1px;
}

/* The Card Structure */
.login-card {
  border-radius: 16px;
  box-shadow: 8px 8px 0px rgba(30, 41, 59, 1);
  border: 2px solid #1E293B;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px rgba(30, 41, 59, 1);
}

.login-left-panel {
  background-color: #F8FAFC;
  border-right: 2px solid #1E293B;
  min-height: 400px;
}

.login-logo {
  max-width: 180px;
  filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.1));
}

.brand-text {
  font-size: 0.85rem;
  color: #64748B;
  letter-spacing: 1px;
}

/* Form Inputs */
.modern-input {
  border: 2px solid #CBD5E1 !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: none !important;
  height: auto !important;
}

.modern-input:focus {
  border-color: #1E293B !important;
  background-color: #F8FAFC;
}

.input-group-text.modern-input {
  padding: 0 1rem;
  display: flex;
  align-items: center;
  border-left: none !important;
}

.input-group-text i {
  color: #64748B;
  transition: color 0.3s ease;
}

.input-group-text:hover i {
  color: #1E293B;
}

.cursor-pointer {
  cursor: pointer;
}

.forgot-password-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.forgot-password-link:hover {
  color: #1E293B !important;
  text-decoration: underline;
}

/* Button */
.btn-modern-success {
  background-color: #10B981;
  color: white;
  border: 2px solid #1E293B;
  border-radius: 8px;
  box-shadow: 4px 4px 0px rgba(30, 41, 59, 1);
  transition: all 0.2s ease;
}

.btn-modern-success:hover {
  background-color: #059669;
  color: white;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(30, 41, 59, 1);
}

.btn-modern-success:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px rgba(30, 41, 59, 1);
}

/* Error Handling */
#parent-error {
  min-height: 24px;
}

/* Keep old eye overrides just in case they are used elsewhere */
#eyeA, #eyeB, #eyeC {
  border-radius: 0 !important;
  cursor: pointer;
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
  padding-top:0.3em !important;
}