.login-card {
  background: white;
  width: 100%;
  max-width: 440px;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.login-logo {
  height: 64px;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

.title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: #64748b;
  margin-bottom: 2.5rem;
}

.login-form {
  text-align: left;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: #94a3b8;
}

.form-control {
  padding-left: 3rem;
  background-color: #fffbeb;
  /* Light yellow as in the image */
  border-color: #fef3c7;
}

.eye-btn {
  position: absolute;
  right: 1rem;
  color: #94a3b8;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #64748b;
}

.forgot-link {
  color: var(--primary);
  font-weight: 500;
}

.submit-btn {
  padding: 0.875rem;
  font-size: 1rem;
  border-radius: 0.75rem;
}

.login-footer {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Basic switch styling */
.switch {
  appearance: none;
  width: 36px;
  height: 20px;
  background-color: #cbd5e1;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s;
}

.switch:checked {
  background-color: var(--primary);
}

.switch::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.2s;
}

.switch:checked::before {
  transform: translateX(16px);
}