body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center; 
  align-items: center;    
  min-height: 100vh; 
  background-image: url('../../images/ad_bg.jpg');
  background-size: cover;
  background-position: center;
  backdrop-filter: brightness(0.5);
}


.centered-div {
  
  width: 100%;
  max-width: 600px; 
  padding: 20px;
  margin: 10px;
  /* border:2px solid rgb(255, 255, 255); */
  border-radius: 15px; 
  box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.5), 0 6px 20px 0 rgba(255, 255, 255, 0.19);
  color: white;
  font-size: 15px;
}

.form-group input{
  border-radius: 15px!important;
  /* border: 1px solid black; */
  box-shadow: 0 4px 8px 0 rgba(80, 5, 255, 0.247), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  font-weight: 600;
}




.color-change {
  padding-left: 3px;
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  animation: changeColor 3s infinite;
}

.pulse-animation {
  animation: pulseAnimation 2s infinite;
  
}
@keyframes changeColor {
  0% {
      color: #fff;
      
  }
  25% {
      color: #006983;
      
  }
  50% {
      color: rgb(1, 34, 105);
      
  }
  75% {
      color: #890bff;
      
  }
  100% {
      color: #ff0077;
      
  }
}
@keyframes pulseAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    
  }
  100% {
    transform: scale(1);
  }
}

@keyframes borderAnimation {
  0% {
    border-color: #2600ff; /* Initial color */
  }

  25% {
    border-color: #00fff2; /* Initial color */
  }
  
  75% {
    border-color: #ff0000; /* Initial color */
  }
  100% {
    border-color: #6fff6f; /* Final color */

  }
}

.centered-div {
  border: 3px solid transparent; /* Initial border */
  animation: borderAnimation 3s infinite linear; /* Animation */
}