.force-show{
  display: block !important;
}

.hidden{
  display: none !important;
}
.resend-otp-button.disabled {
  cursor: not-allowed;
  pointer-events: none;
  color: #000;
  background-color: #e6e6e6;
}
.resend-otp-button {
  display: block;
  padding: 10px 15px;
  border: 1px solid transparent;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  color: #ffffff;
  background-color: #ff7000;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.resend-otp-button:hover {
  background-color: #333333;
}
.user-register-form .form-actions {
  margin-bottom: 20px;
  display: flex;
}
.user-register-form .form-actions #edit-submit {
  order: 1;
}
.user-register-form .form-actions .otp-container {
  order: 2;
  background-color: transparent;
  border: none;
  color: #ff7000;
}
.user-register-form .form-actions .otp-container:hover {
  background-color: transparent;
  border: none;
  color: #000;
}

@media (min-width: 0) and (max-width: 767px) {
  .user-register-form .form-actions {
    flex-direction: column;
  }
}