body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
}

.payment-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.payment-content {
    background: #000000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.payment-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.payment-link {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-bottom: 1rem;
}

.payment-link:hover {
    background-color: #0056b3;
}

input[type="text"] {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #218838;
}

.error-message {
    color: red;
    margin-top: 10px;
    font-size: 0.9rem;
    display: none;
}
img {
    width: 200px;
    height: 250px;
  }

  .header {
    text-align: center;
    margin-bottom: 20px; 
  }
  
  .logo {
    width: 250px; /* Adjust width as needed */
    margin-bottom: 10px;
  }
  
  /* Optional styles for better presentation */
  h1 {
    font-size: 2rem;
    margin: 0;
  }
  
  p {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
  }
  .small-logo {
    width: 50px; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
  }