body{ 
   background-image: url("./image/background.jpg");
   background-size: cover;
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.input{
    background-color: #ffffff;
    width: 94%;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    border-radius: 30px;
     transition: 0.3s;
    }
    .input:hover{
         transform: scale(1.03);
}
.input input{
    width: 100%;
    border: 0px;
    outline: 0px;
    font-size: 30px;
    font-weight: bold;
     color:  rgba(24, 128, 246, 0.9);
    opacity: 2;
}
.input img{
    width: 55px;
    cursor: pointer;
    text-align: right;
}
input::placeholder{
     color:  rgba(246, 24, 161, 0.9);
}
h1{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    color:  rgba(246, 24, 161, 0.9);
    opacity: 1;
}

h1:hover{
     cursor: pointer;
      color:  rgba(24, 128, 246, 0.9);
}
