@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
  min-height: 100vh;
   background-image: linear-gradient(310deg, #000000, #013572, #000000);
  
}
.cashback-text h3 {
  text-align: center;
  color: #000;
}
.cashback-area{
  padding: 50px;
}
.card-registration {
  position: relative; /* Needed for absolute child positioning */
}

.custom-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 1000;
  cursor: pointer;
}

.custom-close-btn img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.custom-close-btn:hover img {
  transform: scale(1.2); /* Fun little zoom on hover */
}
.alert-success {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.custom-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.custom-modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: pop-in 0.3s ease-in-out;
}

.custom-modal-content h4 {
  margin-bottom: 10px;
  font-size: 20px;
}

.custom-close-button {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  background: none;
  border: none;
  color: #333;
  z-index: 1;
}

@keyframes pop-in {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}



.card{
  
  background-color: #f6f6f6;
  overflow: hidden;
  padding: 8px;
   
   
}

.card-body {
  border: 1px solid #CCC;
  -webkit-box-shadow: 0 1px 1px #ddd inset, 0 1px 0 #FFF;
  -moz-box-shadow: 0 1px 1px #ddd inset, 0 1px 0 #FFF;
  box-shadow: 0 1px 1px #ddd inset, 0 1px 0 #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #999;
  float: left;
  font: 16px Lucida Sans, Trebuchet MS, Tahoma, sans-serif;
  padding: 10px;
  background: #FFF;
  
}

.card-body:focus {
  border-color: #aaa;
  -webkit-box-shadow: 0 1px 1px #bbb inset;
  -moz-box-shadow: 0 1px 1px #bbb inset;
  box-shadow: 0 1px 1px #bbb inset;
  outline: 0;
}


.frame {
  width: 90%;
  margin: 10px auto;
  text-align: center;
  
}


.card-body{
  margin-top: 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#eae8e8));
    background-image: -webkit-linear-gradient(top, #f6f6f6, #eae8e8);
    background-image: -moz-linear-gradient(top, #f6f6f6, #eae8e8);
    background-image: -ms-linear-gradient(top, #f6f6f6, #eae8e8);
    background-image: -o-linear-gradient(top, #f6f6f6, #eae8e8);
    background-image: linear-gradient(top, #f6f6f6, #eae8e8);
    border-color:  rgba(255,255,255,.1), 3px 3px 3px 3px #bbb, 3px 3px 3px 3px #aaa, 3px 3px 3px 3px #444;
    border-style: solid;
    border-width: 1px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    
}
.title-body{
  border: 1px solid #CCC;
  -webkit-box-shadow: 0 1px 1px #ddd inset, 0 1px 0 #FFF;
  -moz-box-shadow: 0 1px 1px #ddd inset, 0 1px 0 #FFF;
  box-shadow: 0 1px 1px #ddd inset, 0 1px 0 #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #999;
  float: left;
  font: 16px Lucida Sans, Trebuchet MS, Tahoma, sans-serif;
  padding: 10px;
  background: #FFF;
}

.card-body p{
  text-align: justify;
  color: #000;

}
.d-flex {
  display: flex;
  
}
button.cash-left-btn {
  background-image: linear-gradient(to bottom, #2b32b2 50%, #1488cc 100%); 
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
}
button.cash-right-btn {
  background-image: linear-gradient(to bottom, #2b32b2 50%, #1488cc 100%); 
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
}
.cash-left-btn:hover {
  background-image: linear-gradient(to bottom, #1488cc 50%, #2b32b2 100%);
  color: #F5B027;
}
.cash-right-btn:hover {
  background-image: linear-gradient(to bottom, #1488cc 50%, #2b32b2 100%);
  color: #F5B027;
}
