.ms-otp-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
}

.ms-otp-modal {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 320px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease-in-out;
}

.ms-otp-modal h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.ms-otp-modal input {
  width: 100%;
  padding: 8px;
  margin-top: 10px;
  font-size: 16px;
  text-align: center;
}

#ms-otp-input {
    font-size: 20px;
    min-height: auto;
    width: 80%;
}
.ms-otp-actions {
  margin-top: 15px;
  display: flex;
  justify-content: space-around;
}

.ms-otp-actions .button {
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 6px;
  line-height: 1;
}

#ms-otp-message {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.ms-otp-resend {
  margin-top: 40px;
}

.ms-otp-resend .button-link {
  background: none;
  border: none;
  color: #0073aa;
  cursor: pointer;
  text-decoration: underline;
  font-size: 14px;
}

.ms-otp-resend .button-link[disabled] {
  color: #888;
  text-decoration: none;
  cursor: not-allowed;
}
#ms-otp-info {
    padding-bottom: 10px;
}
#login_error {
    margin-bottom: 15px;
    font-size: 15px;
    padding: 5px;
}