*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
  width:100%;
  height:100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bg-img {
    position: fixed;
    width: 100vw;
    height: 100vh;
    filter: brightness(50%) blur(1px);
    background-repeat: no-repeat;
    object-fit: cover;
}
.form_main {
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 30px 30px 30px 30px;
  border-radius: 30px;
  box-shadow: 0 0 10px #0000001f,0 0 20px #0000001a,0 0 30px #00000029;
  z-index: 10;
}

.heading {
  font-size: 3em;
  color: #2e2e2e;
  font-weight: 700;
  margin: 15px 0 30px 0;
  font-family: verdana;
}

.inputContainer {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inputIcon {
  position: absolute;
  left: 10px;
}

.inputField {
  width: 100%;
  height: 40px;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid rgb(173, 173, 173);
  border-radius: 30px;
  margin: 10px 0;
  color: black;
  font-size: .8em;
  font-weight: 500;
  box-sizing: border-box;
  padding-left: 30px;
}

.inputField:focus {
  outline: none;
  border-bottom: 2px solid rgb(199, 114, 255);
}

.inputField::placeholder {
  color: rgb(80, 80, 80);
  font-size: 1em;
  font-weight: 500;
}

#button {
  position: relative;
  width: 100%;
  border: 2px solid #8000ff;
  background-color: #8000ff;
  height: 40px;
  color: white;
  font-size: .8em;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 30px;
  margin: 10px;
  cursor: pointer;
  overflow: hidden;
}

#button::after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.253);
  height: 100%;
  width: 150px;
  top: 0;
  left: -200px;
  border-bottom-right-radius: 100px;
  border-top-left-radius: 100px;
  filter: blur(10px);
  transition-duration: .5s;
}

#button:hover::after {
  transform: translateX(600px);
  transition-duration: .5s;
}

