* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
  }
  
  html,
  body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  
  .main {
    width: 100%;
    height: 100%;
  }
  
  .wrapper {
    width: 100%;
    height: 100vh;
  }
  
  @media screen and (max-height: 1000px) {
    .wrapper {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
  
  .content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 420px;
    margin-bottom: 210px;
  }
  .top-section{
    margin-bottom: 20px;
    text-align: center;
  }
  .status {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 30px;
  }
  
  .status .loader {
    display: none;
    justify-content: center;
    align-items: center;
    margin-left: 8px;
  }
  
  .status .loader .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    animation: dot-blink 1.5s infinite ease-in-out;
  }
  
  @keyframes dot-blink {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  }
  
  .image {
    width: 100px;
    margin-bottom: 10px;
  }
  
  .bottom-section {
    width: 100%;
  }
  
  .redirect-btn {
    width: 90%;
    height: 40px;
    background: #51a938;
    padding: 20px;
    font-size: 18px;
    margin-bottom: 20px;
    cursor: pointer;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    margin: 0 auto;
  }
  
  .footer {
    margin-top: 20px;
  }
  
  .footer-text {
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    color: #ccc;
  }
  