body {
  align-items: center;
}

.login-container {
  width: 100%;
  max-width: 380px;
  padding: 1.25rem;
  text-align: center;
}

.logo {
  width: 120px;
  margin-bottom: 1.25rem;
}

.welcome-text {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 24px;
}

.input-group {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 25px;
  padding: 10px 15px;
  margin-bottom: 15px;
}

.input-group .icon {
  margin-right: 10px;
  font-size: 18px;
}

.input-group input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 14px;
}

.forgot-password {
  text-align: right;
  margin-bottom: 20px;
}

.forgot-password a {
  font-size: 13px;
  color: #333;
  text-decoration: none;
}

.btn-primary {
  width: 100%;
  padding: 0.75em;
  border-radius: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
}

.signup-text {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #333;
}

.signup-text a {
  color: #1976d2;
  text-decoration: none;
  font-weight: 600;
}

/* OTP Modal Styles */
.otp-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.otp-modal-content {
  background: #fff;
  padding: 20px 15px;
  border-radius: 12px;
  max-width: 90%;
  width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.otp-modal-content h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.otp-modal-content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

#otpInput {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  text-align: center;
}

.otp-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btn-primary,
.btn-secondary {
  flex: 1;
  padding: 10px 0;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.btn-primary {
  background-color: #1b615f;
  color: #fff;
}

.btn-secondary {
  background-color: #ccc;
  color: #000;
  display: flex;
  justify-content: center;
}

.error-text {
  font-size: 0.85rem;
  margin-top: 10px;
}