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

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Syne", sans-serif;
}

body{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url(bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.container{
  color: #fff;
  width: 420px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .2);
  padding: 30px 40px;
  border-radius: 12px;
  backdrop-filter: blur(9px);
}

h1{
  font-size: 39px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 25px;
}

.form-input{
  position: relative;
  width: 100%;
  height: 50px;
  margin: 20px 0;
}

.form-input input{
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  border: 2px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 16px;
  padding: 20px 45px 20px 20px;
  border-radius: 4px;
}

.form-input input::placeholder{
  color: #fff;
}

.form-input i{
  color: #6ee793;
  position: absolute;
  top: 16px;
  right: 10px;
  transform: translate(-50%);
}

.btn{
  width: 100%;
  height: 45px;
  background-color: #6ee793;
  border: none;
  outline: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  font-weight: 550;
  transition: all .4s ease-in-out;
}

.btn:hover{
  background: #6c757d;
  color: #fff;
}