/* Modal styling */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content.login-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Close button */
.modal-content .close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* Headings */
.login-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
}

.login-subtitle {
  font-size: 14px;
  color: #444;
  margin-bottom: 25px;
}

/* Input */
.login-input {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 20px;
  outline: none;
  box-sizing: border-box;
}

/* Terms text */
.terms-text {
  font-size: 13px;
  text-align: center;
  color: #666;
  margin-bottom: 25px;
}

.terms-text a {
  color: #E08B00;
  text-decoration: none;
}

/* OTP Button */
.otp-button {
  width: 100%;
  padding: 14px;
  background: #b0413e;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.otp-button:hover {
  background: #b0413e;
}
/* verify-otp */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  position: relative;
}
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}
.otp-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}
.otp-input {
  width: 50px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  border: none;
  background: orange;
  color: white;
  border-radius: 5px;
}
.btn-verify {
  background: orange;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  margin-top: 20px;
}
.otp-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.otp-input {
  width: 45px;
  height: 50px;
  font-size: 22px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

.otp-input:focus {
  border-color: #ffc107;
  box-shadow: 0 0 6px rgba(255, 193, 7, 0.6);
}
.register-link {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}
