@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.header{
    width: 100%;
    height: 80px;
    background: #f7f8f9;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px;
    display: flex;
    border-radius: 10px 10px 0 0;

}
.logo{
    width: 100px;
    height: 50%;
    margin: auto;
}
.logo img{
    width: 100%;
}
.text{
    margin: auto;
}
.animate-charcter
{
    background-image: linear-gradient(
    -225deg,
    #000000 0%,
    #3C4048 29%,
    #B2B2B2 67%,
    #EAEAEA 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 30px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
.main{
    width: 40%;
    height: 500px;
    margin: 80px auto;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
form{
    width: 80%;
    height: 100%;
    margin: auto;
    padding-top: 40px;
    font-size: 18px;
}
input{
    width: 100%;
    font-size: 18px;
    padding: 10px 20px;
    margin: 20px 0;
    border-radius: 5px;
    border: 1px solid gray;
}
#submit:hover{
    background: black;
    color: white;
    transition: .5s;
}

