*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  font-family: sans-serif;
  margin: 0 auto;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c;
}

h1 {
  text-align: center;
  font-size: 3rem;
  color: #3b65ff;
}

.container-input {
  max-width: 450px;
  margin: 15px 0px;
}
.container-input span {
  color: white;
  font-size: 18px;
}
.container-input .slider {
  -webkit-appearance: none;
  width: 100%;
  border-radius: 15px;
  background-color: rgba(223, 223, 223, 0.262745098);
  height: 18px;
  outline: none;
  margin-top: 8px;
}
.container-input .button-cta {
  height: 35px;
  border: none;
  border-radius: 15px;
  margin-top: 25px;
  background-color: #3b65ff;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  transition: all 0.5s;
  cursor: pointer;
}
.container-input .button-cta:hover {
  background-color: #557aff;
  letter-spacing: 2px;
}

.container-password {
  max-width: 480px;
  margin: 14px 0;
  display: none;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.container-password .title {
  text-align: center;
  color: white;
  font-size: 23px;
  margin-top: 24px;
  margin-bottom: 8px;
}
.container-password .password {
  height: 60px;
  background-color: rgba(59, 101, 255, 0.6235294118);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 19px;
  letter-spacing: 1px;
  transition: all 0.5s;
}
.container-password .password:hover {
  transform: scale(1.02);
  background-color: #3b65ff;
}
.container-password .tooltip {
  color: white;
  text-align: center;
  margin-top: 15px;
  padding: 6px 8px;
  background-color: rgba(13, 31, 96, 0.6274509804);
  border: 2px solid rgba(255, 255, 255, 0.073);
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5;
}

.container-password:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

#for {
  width: auto;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 94%;
  left: 50%;
  color: white;
  font-size: 16px;
}
#for a {
  color: #3b65ff;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */