.lr-login-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 16px;
}

.lr-login-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(16, 24, 40, 0.08);
  padding: 32px;
}

.lr-login-card [hidden] {
  display: none !important;
}

.lr-title {
  margin: 0 0 6px;
  font-size: 1.5rem;
  line-height: 1.3;
}

.lr-subtitle {
  margin: 0 0 24px;
  color: #667085;
  font-size: 0.95rem;
}

.lr-field {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.lr-field label {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #344054;
}

.lr-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lr-field input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.lr-email-input {
  display: flex;
  gap: 8px;
}

.lr-email-input input {
  flex: 1;
}

.lr-arrow-btn {
  flex: 0 0 auto;
  width: 48px;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lr-arrow-btn:hover {
  background: #1d4ed8;
}

.lr-arrow-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.lr-forgot {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #2563eb;
  text-decoration: none;
}

.lr-forgot:hover {
  text-decoration: underline;
}

.lr-message {
  margin-bottom: 18px;
  padding: 12px 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  color: #1e40af;
  font-size: 0.88rem;
  line-height: 1.4;
}

.lr-error {
  margin-bottom: 18px;
  padding: 12px 14px;
  background: #fef3f2;
  border: 1px solid #fecdca;
  border-radius: 8px;
  color: #b42318;
  font-size: 0.88rem;
}

.lr-submit {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lr-submit:hover {
  background: #1d4ed8;
}

.lr-submit:disabled {
  opacity: 0.6;
  cursor: default;
}

.lr-slide {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-bottom 0.3s ease;
}

.lr-slide.lr-open {
  max-height: 200px;
  opacity: 1;
  margin-bottom: 18px;
}
