body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f9f9f9;
    margin: 0;
  }
  
  .outer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0e0e0;
    padding: 30px;
    border-radius: 10px;
  }
  
  .payment-container {
    text-align: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
  }
  
  .logo {
    width: 50px;
    margin-bottom: 10px;
  }
  
  .description {
    font-size: 14px;
    color: #555;
    margin: 10px 0 20px;
  }

  .descriptionL {
    font-size: 16px;
    color: #555;
    margin: 10px 0 20px;
  }
  
  .timer-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  #timer {
    color: green;
    font-weight: bold;
  }
  
  .qr-code {
    margin: 20px auto;
    width: 150px;
    height: 150px;
  }
  
  .info {
    text-align: left;
    margin-top: 10px;
  }
  
  .info p {
    margin: 5px 0;
    font-size: 14px;
    font-weight: 500;
  }
  
  .input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .input-group input,
  .input-group button,
  .input-group .status {
    display: block;
    margin-bottom: 10px;
  }
  

  