body {
    margin: 0;
    padding: 0;
    background-color: #FDFDFD;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'SF Pro Display', sans-serif;
  }

  .container {
    text-align: center;
    margin-top: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .text {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 8px;
    color: #676C74;
  }

  .loader {
    border: 4px solid #FDFDFD;
    border-top: 4px solid #4085EC;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    animation: spin 0.8s linear infinite;
    margin-top: 30px;
  }

  .small-text {
    font-size: 20px;
    font-weight: 500;
    color: #94989D;
  }

  .request-id {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #A3A3A3;
    font-size: 14px;
  }


  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }