/*
Theme Name: Custom PayPal Theme
Author:      Your Name
Author URI:  https://example.com
Description: A custom WordPress theme with PayPal redirect payment integration.
Version:     1.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-paypal-theme
Tags:        custom-paypal, paypal, payments, redirect
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  display: flex;
  gap: 50px;
  max-width: 1140px;
  background: #fff;
  padding: 20px;
}



.icon-box {
  width: 160px;
  height: 100px;
  

  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.icon {
  width: 100%;
  height: 100%;
  


}

h2 {
  color: #006eb1;
  margin-bottom: 30px;
  font-size: 22px;
}

ul {
  margin-left: 20px;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 13px;
}

ul li{
  margin-bottom: 12px;
}

.note {
    margin-top: 35px;
    font-size: 11px;
    line-height: 22px;
}

.payment-form {
  max-width: 285px;
  background: #fff;
  padding: 25px 25px 65px 25px;
  box-shadow: 0 1px 20px rgba(225, 225, 225, 0.9);
  border-radius: 10px;
}

.payment-section h2 {
 
  margin-bottom: 10px;
}

.payment-section p {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
}



input, select {
  width: 100%;
  padding: 10px;
  border-radius: 3px;
      border: 1px solid #006eb1;
  font-size: 12px;
  margin-bottom: 20px;
}

select{
  color: gray;
}

.btn {
      display: -webkit-box;
    background: #00a32c;
    color: #fff;
    padding: 9px 30px;
    border-radius: 4px;
    border: 1px solid transparent;
    font-size: 13px;
    box-shadow: 1px 2px 2px rgba(191, 110, 45, .2);
    font-family: Poppins, sans-serif;
    margin-top: 0;
    outline: 0;
    transition: all .5s 
linear;
    font-weight: 400;
    text-transform: capitalize;
    cursor: pointer;
}

.btn:hover {
  background: #10702a;
}

.paypal-logo {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #555;
}

.paypal-logo img{
 width: 153px;
    margin: 0 auto;
    text-align: center;
    display: inherit;
    margin-top: 15px;
}

/* Hide the "Pay with Debit or Credit Card" button */
.paypal-button-container .paypal-button[data-funding-source="card"] {
  display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 30px;
  }
}
