* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

.background-overlay {
  background: url('https://crossborderedu.org/assets/payment/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;
}

.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;
}

.payment-container form input,
.payment-container form select
 {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border-bottom: 2px solid #0502ac;
  border-radius: 0px !important;
  height: auto;
  outline: none !important;
  box-shadow: none !important;
}

#PaymentNow label{
  font-size: 14px;
  color: red;
  padding:0;
  margin: 0;
}

.payment-container button {
  padding: 14px;
  background: darkblue;
  color: white;
  font-weight: bold;
  border: none;
  outline: none;
  border-radius: 0px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.payment-container button:hover {
  background: #2403c9;
}




/* 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:darkblue;
    border-radius: 20px 20px 0px 0px;
     
}

.payment-receipt-logo{
    height: 60px;
    width: 150px;
    margin-top:20px;
    justify-self: center;
}

.brand-icons i{
    font-size: 25px;
    color: white;
}

.brand-icons{
    text-align: center;
    margin-top:20px;
    color: white;
}


.card_body_area{
    background-color: white;
    padding: 20px;
    border-radius: 0px 0px 20px 20px;
}

.footer_sectionheading{
    font-size: 20px;
    font-weight: 600;
}


.receiptPrint{
  text-align: center;
  margin-top:10px;
}

.receiptPrint button{
  background-color: darkblue;
  color: white;
}
