@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
  
  .background-section {
    background-color: #0a3847;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .background-section::before {
    content: '';
    background-repeat: repeat;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://paylink.monnify.com/static/media/pattern.617647cb35d4d0847948.webp'); /* your overlay image */
    background-size: cover;
    background-position: center;
    opacity: 0.6; /* adjust transparency */
    z-index: 1;
  }
  
  .container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    z-index: 99999999;
  }
  
  .payment-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999999999999;
  }
  
  .header {
    position: relative;
    height: 200px;
  }
  
  .header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
  }
  
  .company-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
  }
  
  .company-logo {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
  }
  
  .company-info h2 {
    color: white;
    font-size: 1.2rem;
  }
  
  .content {
    padding: 24px;
  }
  
  h1 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 8px;
  }
  
  .subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  
  .amount-section {
    margin-bottom: 24px;
  }
  
  .amount-section p {
    color: #666;
    font-size: 0.9rem;
  }
  
  .amount-section h2 {
    color: #333;
    font-size: 1.8rem;
  }
  
  .payment-form h3 {
    font-size: small;
    color: #333;
    margin-bottom: 15px;
  }
  
  .form-row {
    display: flex;
    gap: 10px;
  }

  
  .form-group {
    flex: 1;
    margin-bottom: 12px;
  }
  
  input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  .phone-input {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .phone-prefix {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 6px;
    color: #666;
    font-size: 0.9rem;
  }
  
  .pay-button {
    width: 100%;
    padding: 14px;
    background: #f7941d;
    background: linear-gradient(to top, #f67d0b, #ffb545);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 12px;
    transition: background 0.2s;
  }

  
  .support-text {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    color: #666;
  }
  
  .support-text a {
    color: #0688d4;
    text-decoration: none;
  }
  
  @media (max-width: 480px) {
    .form-row {
      flex-direction: column;
      gap: 0;
    }
    
    .content {
      padding: 16px;
    }
    
    .header {
      height: 150px;
    }
  }