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

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

body h1 {
  position: relative;
  top: -30px;
}

.container {
  width: 460px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  padding: 60px 40px;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
  backdrop-filter: blur(4px);
}

.container h1 {
  font-size: 36px;
  text-align: center;
}

.input-box {
  position: relative;
  width: 100%;
  height: 40px;
  margin: 10px 0;
}

.input-box input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 2px solid white;
  outline: none;
  font-size: 16px;
  color: white;
  padding: 20px 45px 20px 20px;
  border-radius: 40px;
}

.input-box input::placeholder {
  color: grey;
}

.input-box i {
  position: absolute;
  right: 20px;
  font-size: 20px;
  top: 25%;
}

.lembrarminhasenha {
  display: flex;
  justify-content: space-between;
  padding: 12px;
}

.lembrarminhasenha label input {
  accent-color: white;
}

.lembrarminhasenha a {
  text-decoration: none;
  color: white;
}

.lembrarminhasenha a:hover {
  text-decoration: underline;
}

.Login {
  width: 100%;
  height: 50px;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  color: white;
  font-weight: 700;
}

.Login:hover {
  border: 2px solid white;
  box-shadow: 0px 0px 10px 2px white, inset 0px 0px 10px 2px;
  transition: 0.5s;
}

.registro {
  font-size: 14px;
  text-decoration: center;
  margin: 20px 0 15px;
}
.registro a {
  text-decoration: none;
  color: white;
  font-weight: 800px;
  font-size: 15px;
}

.registro a:hover {
  text-decoration: underline;
}

.registro p {
  text-align: center;
}
