@keyframes rotateButton {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(3deg); }
  100% { transform: rotate(-3deg); }
}
body{
    background-image:url(../image/background.png);
}
.input-group {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
}
.neonborder {
  box-shadow: 0 0 .2rem #fff,
  0 0 .2rem #fff,
  0 0 2rem #f451fd,
  0 0 0.8rem #f93dff,
  0 0 2.8rem #e966fd,
  inset 0 0 1.3rem #f386fc;
}
  
  .neonborder-accordion {
    box-shadow: 0 0 0.1rem #ffffff69, 0 0 0.1rem #ffffff82, 0 0 0.8rem #f93dff80, 0 0 1.6rem #e966fd73;
    border-radius: var(--bs-accordion-border-radius);  
    }
  .form-body{
    display: grid;
    grid-template-columns: 11% 17% 61% 11%;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }
  .text-header{
    font-size: 16px;
  }
  .img-purrzoom{
    grid-column-start: 2;
    display: flex;
    align-items: center;
    max-width: 200px;
    margin-right: 20px;
  }
  .container-fluid{
    grid-column-start: 3;
  }
  .form-input{
    display: block;
    margin: 15px 15px 15px 0px;
    width: 75%;
    max-height: 50px;
    padding: .375rem .75rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
}
  .form-input:focus + .image-button{
    transform: scale(1.1);
    animation: rotateButton 1s infinite;
  }
  .input-text:not(:focus) + .button-img {
    animation-play-state: paused;
  }
.image-button:hover{
  background-image: url(../image/buttonimgclaw.png);
}
.image-button {
  max-width: 25%;
  width: 100px;
  height: 100px;
  border: none;
  background-color: rgb(43 48 53);
  background-image: url('../image/buttonimgnoclaw.png');
  background-size: cover;
}
.footer {
  margin-top: 30vh;
  padding: 20px 0 0 0;
  background: linear-gradient(rgba(0, 0, 0, 0), rgb(0 0 0 / 88%) 70%);
  display: flex;
  flex-direction: column; 
  min-height: 6vh; 
  width: 100%;
}
.text-footer{
  padding: 0;
  margin: 10px;
}
.header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(180deg, #212529e8 80%, rgb(0 0 0 / 0%));
    padding: 25px 0 35px 0;
    z-index: 1000;
}
.container{
  margin-top: 15px;
}
.button-pointer{
  
}
.button-pointer-img{
  max-width: 70px;
  position: absolute;
}
.botton-pointer-img-full{
  max-width: 70px;
}
@media (max-width: 768px) {
  .form-input{
    width: 100%;
  }
  .botton-pointer-img-full{
    width: 100px;
    margin-left: 50px;
    margin-top: -75px;
  }
  .form-body{
    display: grid;
    grid-template-columns: 10% 80% 10%;
    grid-template-rows: 33% 66%;
    justify-content: center;
    align-items: start;
    justify-items: center;
  }
  .img-purrzoom{
    grid-row-start: 1;
    grid-column-start: 2;
    margin: 15px 0 0 0;
  }
  .container-fluid{
    grid-row-start: 2;
    grid-column-start: 2;
  }
  .button-pointer{
    max-width: 70px;
  }
  .image-button{
    max-width: 100%;
  }
  .input-group {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
  }
}