/* Import Google Font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #e6e6e6;
}
body {
  display: flex;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #303134;
  background-image: url(assets/icon.png);
  background-repeat: repeat;
  background-size: 455px;
}
::selection {
  color: #fff;
  background: #239ee7;
}
.wrapper {
  max-width: 500px;
  max-height: 500px;
  background: #202124;
  border-radius: 8px;
  padding: 20px 25px 15px;
  box-shadow: 0 15px 40px #00000041;
  margin: 3px;
}
header h1 {
  font-size: 27px;
  font-weight: 500;
  text-align: center;
}
header p {
  margin-top: 5px;
  font-size: 18px;
  text-indent: 8%;
  color: #bebebe;
  text-align: justify;
}

h1 a {
  text-decoration: none;
  color: #1d9bf0;
  position: relative;
  transition: color 0.3s ease;
}

h1 a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #1d9bf0;
  bottom: -2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

h1 a:hover::before {
  transform: scaleX(1);
}

.inputs {
  margin: 20px 0 27px;
}
.inputs input {
  width: 100%;
  height: 50px;
  outline: none;
  padding: 0 17px;
  font-size: 19px;
  border-radius: 5px;
  border: 1px solid #999;
  color: #202124;
  transition: 0.1s ease;
}
.inputs input::placeholder {
  color: #999999;
}
.inputs input:focus {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}
.inputs input:focus::placeholder {
  color: #bebebe;
}
.inputs button {
  width: 100%;
  height: 56px;
  border: none;
  opacity: 0.7;
  outline: none;
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  margin-top: 20px;
  border-radius: 5px;
  pointer-events: none;
  background: radial-gradient(circle, #239ee7 0%, #046be4 100%);
  transition: opacity 0.15s ease;
}
.inputs button.active {
  opacity: 1;
  pointer-events: auto;
}
.info-txt {
  display: none;
  font-size: 19px;
  text-align: center;
  margin-bottom: 18px;
}
.info-txt span {
  color: #239ee7;
}

@media screen and (max-width: 520px) {
  body {
    background-repeat: repeat;
    background-size: 250px;
  }
  .wrapper {
    padding: 17px 20px 10px;
    max-height: 600px;
  }
  header h1 {
    font-size: 25px;
  }
  header p {
    font-size: 16px;
  }
  .inputs input {
    height: 45px;
    font-size: 17px;
  }
  .inputs button {
    height: 50px;
    font-size: 16px;
    margin-top: 17px;
  }
  .info-txt {
    font-size: 18px;
  }
}
