* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "Roboto", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  background-color: #0a0a10;
}
.blur {
  position: absolute;
  background-color: #fff;
  width: 414px;
  height: 280px;
  z-index: -1;
  fill: #fff;
  opacity: 0.25;
  filter: blur(24px);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 0px;
  max-width: 414px;
  min-height: 100vh;
  gap: 12px;
  position: relative;
}

h1 {
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
}

.container-inputs {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

label {
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px; /* 169.231% */
  letter-spacing: -0.408px;
  margin-bottom: 4px;
}
input {
  width: 100%;
  height: 42px;
  margin-bottom: 8px;
  background: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);

  font-size: 20px;
  font-weight: 400;
  line-height: 20px; /* 117.647% */
  letter-spacing: -0.24px;
  color: #fff;
  padding-left: 4px;
}
input::placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.24px;
}

.button-login {
  margin-top: 20px;
  width: 100%;
  height: 68px;
  background: #d93856;
  font-weight: 900;
  font-size: 17px;
  line-height: 2px;
  border: none;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.button-login:hover {
  cursor: pointer;
  opacity: 0.8;
}

.button-login:active {
  opacity: 0.6;
}

i {
  font-weight: 900;
  font-size: 22px;
  line-height: 2px;
}
.login-google {
  border: none;
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  height: 68px;
  width: 100%;
  padding: 0px 74px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 2.5px;
  cursor: pointer;
  transition: all 0.3s;
  gap: 12px;
}
.login-google:hover {
  opacity: 0.8;
}
.login-google:active {
  opacity: 0.6;
}

.rodapé {
  position: relative;
  margin-top: 20px;
}

a {
  line-height: 16px;
  font-weight: 900;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

a::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  background-color: #d93856;
  bottom: -3px;
  left: 0;
  transition: 0.3s ease;
}

a:hover::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: #d93856;
  bottom: -3px;
  left: 0;
}

span {
  color: #fff;
}
