:root {
  --bg-color: #000;
}
@font-face {
  font-family: "axiforma-regular";
  src: url(./font/Axiforma-Regular.ttf);
}
@font-face {
  font-family: "axiforma-bold";
  src: url(./font/Axiforma-Bold.ttf);
}
@font-face {
  font-family: "axiforma-semiBold";
  src: url(./font/Axiforma-SemiBold.ttf);
}
.main {
  background-color: var(--bg-color);
  min-height: 100vh;
  position: relative;
  padding-bottom: 20px;
}
.main::before {
  content: "";
  position: absolute;
  background-image: url(./images/bg_right.png);
  bottom: 32px;
  right: 0px;
  background-repeat: no-repeat;
  /* z-index: ; */
  width: 400px;
  background-size: contain;
  height: 494px;
  margin: 221.5px 0 0 509px;
  opacity: 0.5;
}
.main::after {
  content: "";
  position: absolute;
  background-image: url(./images/bg_left.png);
  top: 182px;
  left: 0px;
  background-repeat: no-repeat;
  width: 250px;
  background-size: cover;
  height: 250px;
}
.top_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
.top_section .btn_right button {
  background: linear-gradient(91deg, #0059ff, #003393);
  font-family: "axiforma-bold";
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 7px 30px 4px;
}
.box__wrapper{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 150px);
}
.main__box {
    width: 82%;
   margin-top: 30px;
  text-align: center;
  padding: 28px 30.3px 30.8px 30.3px;
  border-radius: 11px;
  border: 1px solid #003599;
  background-color: #161d2b63;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(2px);
  position: relative;
  z-index: 99;
}

.top_box {


background: #0e15223e;
}
.box_wrapper{
border: 1px solid #003599;
padding: 20px 50px;border-top-left-radius: 5px;
border-top-right-radius: 5px;
margin-bottom: 15px;
}
.balance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
}
.balance .wrapper img{
    width: 35px;
    object-fit: contain;
}
.balance span{
    padding-left: 10px;
    color: #7E7E7E;
}
.balance p{
    color: #fff;
    font-family: "axiforma-bold";
    margin-bottom: 0px;
}
.line_main{
    border-top: 0.3px solid #606060;
    border-bottom: 0.3px solid #606060;
}
.btm_wrapper{
    display: flex;
    gap: 15px;
justify-content: space-between;
}
.btm_left {
    border: 1px solid #003599;
    padding: 10px 0px;
    padding-left: 0px;
    width: 50%;
    border-bottom-right-radius: 5px;
}
.radius__left{
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 0px;
}
.btm_left .payment_btn{
    background: #0E1522;
    font-family: "axiforma-bold";
    color: #fff;
    border: none;
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
    padding: 5px 30px;
    display: block;
}
.btm_left p{
    text-align: left;
    font-size: 16px;
    color: #7E7E7E;
    font-family: "axiforma-semiBold";
    margin-bottom: 0px;
}
.sibilings_div{
    padding: 15px 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sibilings_div input{
    padding: 10px 35px;
    background: transparent;
    border: none;
    border: 1px solid #003599;
}
.sibilings_div .add_btn{
    display: block;
    width: 100%;
    border-radius: 5px;
    background-color: #0059ff;
    border: none ;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    font-family: "axiforma-semiBold";

}
@media (max-width: 991px) {
    .btm_wrapper{
        flex-direction: column;
    }
    .btm_left{
        width: 100%;
    }
}