
#rotate{
    z-index: 99;
    background-color: black;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.phone {
    height: 50px;
    width: 100px;
    border: 3px solid white;
    border-radius: 10px;
    animation: rotate 1.5s ease-in-out infinite alternate;
    /* display: none; */
  }
  
  .message {
    color: white;
    font-size: 1em;
    margin-top: 40px;
    /* display: none; */
  }

  .d-noneImp{
    display: none!important;
  }

  .d-flexImp{
    display: flex!important;
  }
  
  @keyframes rotate {
    0% {
          transform: rotate(0deg)
      }
      50% {
          transform: rotate(-90deg)
      }
      100% {
          transform: rotate(-90deg)
      }
  }
  
  @media only screen and (max-width: 991px) and (orientation: landscape)  {
    #rotate {
      display: flex;
    }
    .signinBox {
      position: fixed;
    }
  }