#wur_mobile_submission_form_wrapper , #wur_mobile_verification_form_wrapper , #wur_reset_password_form_wrapper{
    display: none;
}
#wur_forms_wrapper {
    max-width: 100%;
    width: 46rem;
    margin: auto;
    padding: 24px;
    border: 1px solid var(--c-blue-100);
    border-radius: 15px;
    margin-bottom: 100px;
    margin-top: 50px;
  position: relative;
  }
  .form-row.buttons-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
  }
  .resend-verification-code,
  .reset-password-link {
    color: #3f4064;
    font-size: 14px;
    cursor: pointer;
    transition: 0.4s ease;
  }
  .resend-verification-code:hover,
  .reset-password-link:hover {
    color: var(--c-secondary);
  }

  #wur_forms_wrap .alert {
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%);
    width: max-content;
    line-height: 1.8;
    padding: 10px;
  }
  @media screen and (max-width: 768px) {
    #wur_forms_wrapper {
      width: 100%;
      padding: 16px;
      margin-bottom: 90px;
      margin-top: 0;
    }
  }