/* body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9fafb;
}
 */


.login-container {
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 320px;
  box-sizing: border-box;
  text-align: center;
}

.login-form h1 {
  color: #2e4aac;
  /* color: var(--logo-dark-yellow); */
  margin-bottom: 8px;
  font-weight: 700;
  text-align: center;
}

.login-form h3 {
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}

.welcome-text {
  font-size: 14px;
  color: #4a5568;
  text-align: center;
  margin-bottom: 24px;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #374151;
}

input[type="email"],
input.otp-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #d1d5db;
  font-size: 14px;
  outline: none;
  margin-bottom: 16px;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
input.otp-input:focus {
  border-color: #2e4aac;
}

.btn-send-otp,
.btn-verify-otp {
  width: 100%;
  padding: 12px;
  /* background-color: #2e4aac; */
  background-color: var(--logo-dark-yellow);
  border: none;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease;
  margin-bottom: 12px;
}

.btn-send-otp:hover,
.btn-verify-otp:hover {
  /* background-color: #1c2e7a; */
  background-color: var(--logo-light-yellow);
}

.otp-input-section {
  margin-top: 12px;
}

.register-text {
  font-size: 13px;
  text-align: center;
  color: #4a5568;
}

.register-text a {
  text-decoration: none;
}

.register-text a strong {
  /* color: #2e4aac; */
  color: var(--logo-light-yellow);
  cursor: pointer;
}

.register-text a:hover strong {
  text-decoration: underline;
}
/* Popup Message Styles */
.popup-message {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  z-index: 10000;
  max-width: 300px;
  word-wrap: break-word;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease-out;
}

.popup-message.success {
  background-color: #10b981;
}

.popup-message.error {
  background-color: #ef4444;
}

.popup-message.info {
  background-color: #6b7280;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
