* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

.background-overlay {
  background: url('https://4rpacificholidayspvtltd.com/assets/img/payment-bg.jpg') no-repeat center center/cover;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 50px;
  padding-bottom: 50px;
}

header {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.logo {
  max-width: 170px;
  height: 55px;
  padding: 5px;
}

.payment-container {
  background: rgba(255, 255, 255, 0.318);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  width: 100%;
}

.payment-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

form input,
form select
 {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px !important;
  height: 45px;
}

button {
  padding: 14px;
  background: #f8ae00;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #f8ae00;
}




/* Pay Preview */

table tbody tr td{
    width: 50% !important;
    background-color: #ffffffcf !important;
    padding: 15px !important;
    font-weight: 600 !important;
}



/* Payment Receipt CSS */

.payment-receipt{
    background-color: rgb(239, 238, 248);
}

.payment__receipt_header{
    padding: 20px;
    background-color: #f8ae00;
     border-radius: 20px 20px 0px 0px;
}

.payment-receipt-logo{
    height: 100px;
}

.brand-icons i{
    font-size: 25px;
    color: black;
}

.brand-icons{
    text-align: center;
    margin-top:20px;
    color: black;
}


.card_body_area{
    background-color: white;
    padding: 20px;
    border-radius: 0px 0px 20px 20px;
}

.footer_sectionheading{
    font-size: 20px;
    font-weight: 600;
}



