.gbtn {
      width:50%;
      outline: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap:10px;
      background: #000000;
      min-width: 200px;
      border: 0;
      border-radius: 4px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
      box-sizing: border-box;
      padding: 10px 20px;
      color: #fff!important;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: capitalize;
      overflow: hidden;
      cursor: pointer;
}
@media(max-width:768px){
    .gbtn {
      width:100%;
    }
}
.gbtn:hover {
  opacity: .95;
}

.gbtn .animation {
  border-radius: 100%;
  animation: ripple 0.6s linear infinite;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
  }
}

.pay-btn {
  position: relative;
  padding: 12px 24px;
  font-size: 16px;
  /*background: #1a1a1a;*/
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
    background-color: black;
}

#payButton{
}

.pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.icon-container {
  position: relative;
  width: 24px;
  height: 24px;
}

.icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  color: #22c55e;
  opacity: 0;
  visibility: hidden;
}

.default-icon {
  opacity: 1;
  visibility: visible;
}

/* Hover animations */
.pay-btn:hover .icon {
  animation: none;
}

.pay-btn:hover .wallet-icon {
  opacity: 0;
  visibility: hidden;
}

.pay-btn:hover .card-icon {
  animation: iconRotate 2.5s infinite;
  animation-delay: 0s;
}

.pay-btn:hover .payment-icon {
  animation: iconRotate 2.5s infinite;
  animation-delay: 0.5s;
}

.pay-btn:hover .dollar-icon {
  animation: iconRotate 2.5s infinite;
  animation-delay: 1s;
}

.pay-btn:hover .check-icon {
  animation: iconRotate 2.5s infinite;
  animation-delay: 1.5s;
}

/* Active state - show only checkmark */
.pay-btn:active .icon {
  animation: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.pay-btn:active .check-icon {
  animation: checkmarkAppear 0.6s ease forwards;
  visibility: visible;
}

.btn-text {
  font-weight: 600;
  font-size: 16px;
  font-family:'georgia',
    system-ui,
    -apple-system,
    sans-serif;
}

@keyframes iconRotate {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.5);
  }
  5% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  15% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  20% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.5);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.5);
  }
}

@keyframes checkmarkAppear {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}


.loader {
  width: 100%;
  height: 100%;
  margin-top:50%;
  /*position: absolute;*/
  /*top: 0;*/
  /*left: 0;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: start;
  scale: 1.5;
}
@media(max-width:768px){
    .loader {
      margin-top:10%;
      scale: 1;
    }
}
.loader .contain {
  width: 300px;
  height: fit-content;
  /*position: absolute;*/
  /*top: 50%;*/
  /*left: 50%;*/
  /*transform: translate(-50%, -50%);*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.loader .contain .coffee-header {
  padding: 10px;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ddcfcc;
  border-radius: 10px;
}
.loader .contain .coffee-header__buttons {
  width: 25px;
  height: 25px;
  background-color: #282323;
  border-radius: 50%;
  box-shadow: 40px 0 0 0 #282323;
}
.loader .contain .coffee-header__buttons::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  transform: translate(100%, 25px);
  background-color: #615e5e;
  box-shadow: 40px 0 0 0 #615e5e;
}
.loader .contain .coffee-header__display {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
  background-color: #9acfc5;
  border: 5px solid #43beae;
  box-sizing: border-box;
}
.loader .contain .coffee-header__details {
  width: 8px;
  margin-left: 16px;
  height: 20px;
  align-self: flex-start;
  background-color: #9b9091;
  box-shadow:
    -12px 0 0 #9b9091,
    -24px 0 0 #9b9091;
}
.loader .contain .coffee-medium {
  width: 90%;
  height: 160px;
  position: relative;
  background-color: #bcb0af;
}
.loader .contain .coffee-medium:before {
  content: "";
  width: 90%;
  height: 100px;
  background-color: #776f6e;
  position: absolute;
  bottom: 0;
  left: 5%;
  border-radius: 20px 20px 0 0;
}
.loader .contain .coffe-medium__exit {
  width: 60px;
  height: 20px;
  position: absolute;
  top: 0;
  left: calc(50% - 30px);
  background-color: #231f20;
}
.loader .contain .coffe-medium__exit::before {
  content: "";
  width: 50px;
  height: 20px;
  border-radius: 0 0 50% 50%;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 25px);
  background-color: #231f20;
}
.loader .contain .coffe-medium__exit::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 5px);
  background-color: #231f20;
}
.loader .contain .coffee-medium__arm {
  width: 70px;
  height: 20px;
  position: absolute;
  top: 15px;
  right: 25px;
  background-color: #231f20;
}
.loader .contain .coffee-medium__arm::before {
  content: "";
  width: 15px;
  height: 5px;
  position: absolute;
  top: 7px;
  left: -15px;
  background-color: #9e9495;
}
.loader .contain .coffee-medium__cup {
  width: 80px;
  height: 47px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 40px);
  background-color: #fff;
  border-radius: 0 0 70px 70px/0 0 110px 110px;
}
.loader .contain .coffee-medium__cup::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 6px;
  right: -13px;
  border: 5px solid #fff;
  border-radius: 50%;
}
.loader .contain .coffee-medium__liquid {
  width: 6px;
  height: 63px;
  position: absolute;
  top: 50px;
  left: calc(50% - 3px);
  background-color: transparent;
  overflow: hidden;
}
.loader .contain .coffee-medium__liquid::before {
  transform: translateY(-100%);
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #74372b;
  animation: liquid 5000ms linear 3500ms infinite normal both;
}
.loader .contain .smoke {
  opacity: 0;
  width: 8px;
  height: 20px;
  position: absolute;
  border-radius: 5px;
  background-color: #b3aeae;
}
.loader .contain .smoke.one {
  bottom: 30px;
  left: 102px;
  animation: smoke 3s 5s linear infinite;
}
.loader .contain .smoke.two {
  bottom: 40px;
  left: 118px;
  animation: smoke 3s 4s linear infinite;
}
.loader .contain .smoke.three {
  bottom: 40px;
  right: 118px;
  animation: smoke 3s 7s linear infinite;
}
.loader .contain .smoke.four {
  bottom: 30px;
  right: 102px;
  animation: smoke 3s 6s linear infinite;
}
.loader .contain::after {
  content: "";
  width: 95%;
  height: 15px;
  background-color: #41bdad;
  box-shadow: 0 15px 0 5px #000;
  border-radius: 10px;
}

@-webkit-keyframes smoke {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }
  40% {
    opacity: 0.5;
  }
  50% {
    transform: translateY(-10px);
    opacity: 0.3;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-30px);
    opacity: 0;
  }
}

@keyframes smoke {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }
  40% {
    opacity: 0.5;
  }
  50% {
    transform: translateY(-10px);
    opacity: 0.3;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-30px);
    opacity: 0;
  }
}
@-webkit-keyframes liquid {
  10% {
    transform: translateY(0);
  }
  90% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes liquid {
  10% {
    transform: translateY(0);
  }
  90% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}


/*CSS */

.inputGroup {
  font-family: 'Segoe UI', sans-serif;
  margin: 0.9em 0 0 0;
  position: relative;
}

.inputGroup input {
  font-size: 100%;
  padding: 0.8em;
  outline: none;
  background-color: transparent!important;
  width: 100%;
  z-index: 0;
  font-family: 'georgia', system-ui, -apple-system, sans-serif;
}
.inputGroup input:-webkit-autofill {
  background-color: transparent !important; 
  color: transparent !important;            
  transition: background-color 5000s ease-in-out 0s; 
}

/* Optional: Remove yellow background on autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  box-shadow: 0 0 0px 1000px white inset !important;
}

.inputGroup label {
  font-size: 16px;
  position: absolute;
  left: 16px;
  padding: 0.8em;
  margin-left: 0.5em;
  pointer-events: none;
  transition: all 0.3s ease;
  color: rgb(100, 100, 100);
  user-select: none;
  font-family: 'georgia', system-ui, -apple-system, sans-serif;
}

.inputGroup :is(input:focus, input:valid)~label,
.inputGroup input:not(:placeholder-shown) ~ label{
    user-select: none;
    font-size:14px;
    transform: translateY(-50%) scale(.95);
    margin: 0em;
    margin-left: 1em;
    margin-top: -26px;
    padding:  0 0.4em;
    background-color: #fff;
}


.inputGroup :is(input:focus, input:valid),
.inputGroup input:not(:placeholder-shown) {
  border-color: transparent;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position:relative;
  z-index: 1;
  background-color: #ffffff;
  /*padding: 30px;*/
  /*border-radius: 20px;*/
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

::placeholder {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.form button {
  /*align-self: flex-end;*/
  align-self:center;
}

.flex-column > label {
  color: #151717;
  font-weight: 600;
}

.inputForm {
  border: 1.5px solid #ecedec;
  border-radius: 4px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  transition: 0.2s ease-in-out;
}

.input {
  /*margin-left: 10px;*/
  border-radius: 2px;
  border: none;
  width: 85%;
  height: 100%;
}

.input:focus {
  outline: none;
}

.inputForm:focus-within {
  border: 1.5px solid #000;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.flex-row > div > label {
  font-size: 16px;
  color: black;
  font-weight: 400;
}

.span {
  font-size: 16px;
  margin-left: 5px;
  color: #000;
  font-weight: 500;
  cursor: pointer;
}

.button-submit {
  margin: 20px 0 10px 0;
  background-color: #151717;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border-radius: 2px;
  height: 50px;
  width: 100%;
  cursor: pointer;
}

.button-submit:hover {
  background-color: #252727;
}
.login-page{
    box-shadow: 0px 1px 10px 1px #d7d7d7;
    padding: 20px;
}
.login-page .p {
  text-align: center;
  color: black;
  font-size: 16px;
  margin: 5px 0;
}

.login-page .btn {
  margin-top: 10px;
  width: 100%;
  height: 50px;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  gap: 10px;
  border: 1px solid #ededef;
  background-color: white;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.login-page .btn:hover {
  border: 1px solid #000;
  ;
}

.google-hide{
    opacity:1%;
    position:absolute;
    z-index: 1;
}


    .Btn {
      width: 50%;
      /*height: 40px;*/
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgb(15, 15, 15);
      border: none;
      color: white;
      font-weight: 600;
      gap: 8px;
      cursor: pointer;
      box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.103);
      position: relative;
      overflow: hidden;
      transition-duration: .3s;
      letter-spacing: 1.2px;
      font-size: 16px;
      font-family: 'georgia', system-ui, -apple-system, sans-serif;
      text-transform: capitalize;
    }

.svgIcon {
  width: 16px;
}

.svgIcon path {
  fill: white;
}
.Btn span{
    color:white;
}
.Btn a:hover span{
    color:black;
}

.Btn::before {
    width: 100%;
    height: 130px;
  position: absolute;
  content: "";
  background-color: white;
  border-radius: 50%;
  left: -100%;
  top: 0;
  transition-duration: .3s;
  mix-blend-mode: difference;
  /*z-index: 0;*/
}

.Btn:hover::before {
  transition-duration: .3s;
  transform: translate(100%,-50%);
  border-radius: 0;
}
.Btn:hover {
    border: 1px solid #000;
}
.Btn:active {
  transform: translate(5px,5px);
  transition-duration: .3s;
}
.select2-container--default .select2-selection--single{
    background-color: #ffffff!important;
    border: 1.5px solid #ecedec!important;
}


/*tab button*/
                .countryselect {
                    display: flex;
                    gap: 10px;
                    flex-wrap: wrap;
                    width:100%;
                }
                .wth{
                    width: 75%;
                }
                @media(max-width:768px){
                .wth{
                    width: 100%;
                }
                }
                .countryselect input[type="radio"] {
                    display: none;
                }
                
                .countryselect label {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 100%;
                    gap: 10px;
                    padding: 10px 16px;
                    border: 2px solid #efefef;
                    border-radius: 6px 6px 0 0;
                    background-color: #ffffff;
                    cursor: pointer;
                    transition: background-color 0.3s, border-color 0.3s;
                    color: #333;
                    font-weight: 500;
                        box-shadow: 0px 0px 8px 1px #f1f1f1;
                }
                
                .countryselect input[type="radio"]:checked + label {
                    background-color: #000;
                    color: #fff;
                    border-color: #000;
                }
                
                .countryselect label svg {
                    width: 20px;
                    height: 20px;
                    fill: currentColor;
                }
    @media(max-width:768px){
        .Btn {
      width: 100%;
        }
    }
    .rlabels{
        display:flex;
        flex-direction: column;
    }
    .rlabels label{
        display: inline-flex;
        align-items: center;
        gap:10px;
    }
    .rlabels input{
        accent-color: #000;
    }
/*tab button*/