* {
  transition: all 0.3s ease-in-out;
}

body {
    background-image: url(mountain.jpg);
    background-size: cover;
   display: flex;
     justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
 

.container {
    height: 370px;
    width: 270px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);          
    -webkit-backdrop-filter: blur(50px);  
    border-radius: 25px;
    box-shadow: 5px 8px 32px rgba(0, 0, 0, 0.37);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
     animation: animate 0.8s ease-out infinite alternate 2s;
    
}

@keyframes animate {
  0% {
    transform: translatey(0px);
  }

  100% {
    transform: translatey(10px);
  }
}


 .input-group {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    
 }

 input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    padding-left: 22px;
}


.inside {
    display: flex;
    height: 40px;
    width: 100%;
    padding: 1px;

}

.inside input {
  padding-left: 40px;
  color:white;
  border: none;
}

.inside i {
 color: rgba(255, 255, 255, 0.9);
  position: absolute;
   padding: 12px;
  }

  button {
    background-color: blue;
    border-radius: 20px;
    font-size: 1rem;
    height: 40px;
    width: 100%;
    border: none;
    color: whitesmoke;
 }

input {
    height: 100%;
    width: 100%;
    border-radius: 35px ;
    border: none;
     padding-left: 15px;
     font-size: 1rem;
     background-color: rgba(255, 255, 255, 0.2);
}

a{
    color: aqua;
    text-decoration: none;
}

.container h1 {
    color: black;
    text-align: center;
    font-size: 3rem;
    color: white;
}

 p{
     font-size: large;
     color: white;
}

button:hover {
  background: linear-gradient(to right, #00dbde, #fc00ff, purple);
  transform: scale(1.05);
  cursor: pointer;
}


