

#formOTP {
    max-width: 800px;
    margin: 14px auto 0;
  }
  #formOTP input {
    margin: 0 2px;
    text-align: center;
    font-size: 30px;
    border: solid 1px #ccc;
    box-shadow: 0 0 5px #ccc inset;
    outline: none;
    width: 14%;
    transition: all .2s ease-in-out;
    border-radius: 3px;
  }
    #formOTP input:focus {
        border-color: #27A1CA;
        box-shadow: 0 0 5px #27A1CA inset;
      }
      
      #formOTP input::selection {
        background: transparent;
      } 
    
      #formOTP button { 
        text-transform: uppercase;
    }
    
    .otp button { 
        text-transform: uppercase;
    }
  
    #resendOTP {
      display: none;
  }
  
  #changePassword {
      display: none;
  }
  
  /* page structure */
  #page {
      display: block;
      position: relative;
      overflow: hidden;
      height: auto;
      background: #fff;
  }
  
  #otp {
  
      letter-spacing: 23px;
  
  }
  .qrmobile {
    display: none;
  }
  
  .qrdesktop {
    display: block;
  }
  
  @media (max-width:575px) {
    .qrmobile {
        display: block;
    }
  
    .qrdesktop {
        display: none;
    }
  }