/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Custom Font */

  
  body {
    font-family: "Azo Sans", Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
  }
  
  /* Navbar styling */
  .navbar {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding: 0px calc(50% - 41rem);
    border-right: 1rem solid transparent;
    border-left: 1rem solid transparent;
    height: 4rem;
    box-shadow: rgba(25, 48, 82, 0.1) 0rem 0.25rem 0.5rem;
    background-color: #fff;
  }
  
  .logo {
    width: 150px;
    height: auto;
  }
  
  .logo-text {
    font-size: 22px;
    font-weight: bold;
    color: #333;
  }
  
  /* Payment Container */
  .payment-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    text-align: center;
  }
  
  .payment-container h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .payment-container p {
    margin: 10px 0;
    font-size: 16px;
    color: #555;
  }
  
  /* Loading Spinner */
  .loading-spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 20px 0;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Link Styling */
  .payment-container a {
    color: #007bff;
    text-decoration: none;
  }
  
  .payment-container a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .payment-container h1 {
      font-size: 24px;
    }
  
    .payment-container p {
      font-size: 14px;
    }
  }
  