*
{
    padding: 0;
    margin:0;
    font-family:"Outfit",sans-serif;
}
body{
    height: 100vh;
    display:flex;
    justify-content: center;
    align-items: center;
    background-color: seagreen;
    background: url(img.jpg) no-repeat;
}
.container
{
    max-width: 420px;
    width:100%;
    background: transparent;
    border:2px solid rgba(255,255,255,.2);
    backdrop-filter: blur(5px);
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
h1{
    text-align: center;
    padding:15px;
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg,#fff 0%,#de005e 25%,black 50%,#de005e 75%,#fff 100%);
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation:animate 10s linear infinite;
}
@keyframes animate {
    100%{
        background-position: 400%;
    }
}
.in{
    margin: 10px;
    position: relative;
}
.in input{
    width:260px;
    height:30px;
    margin: 5px;
    padding-left: 10px;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255,255, 255, .2);
    border-radius: 40px;
}
i{
    position:absolute;
    left:250px;
    top:12px;
}
::placeholder{
    color: #fff;
}
.rf{
    display: flex;
    justify-content: center;
    margin-top: 8px;
}
.rf a{
    padding-left:30px;
    text-decoration: none;
    color:#fff;
}
.rf a:hover{
    text-decoration: underline;
}
.round{
   cursor:pointer;
}
button{
    width: 260px;
    height: 30px;
    border-radius: 40px;
    font-weight: bold;
    background: #fff;
    border: none;
    outline: none;
    border: 2px solid rgba(255,255, 255, .2);
    border-radius: 40px;
}
.buttons{
    display: flex;
    justify-content: center;
    margin:15px;
}
.reg{
    margin: 15px;
    display: flex;
    justify-content: center;
}
.reg a{
  color:#fff;
  font-weight: bold;
  text-decoration: none;
}
.reg a:hover{
    text-decoration: underline;
}