@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");
body {
  font-family: "JetBrains Mono", serif;
  background: rgb(24, 23, 31);
  color: rgb(230, 229, 234);
  font-weight: 700;
  height: 100vh;
  display: flex;
  align-items: center;
}

main {
  display: block;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

h1 {
  font-size: 1rem;
  text-align: center;
  color: rgb(128, 124, 146);
  margin: 0 0 1rem;
}

.output-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(36, 35, 44);
  padding: 1.035rem 1rem;
  margin-bottom: 0.938rem;
}
.output-div #output {
  line-height: 31px;
  font-size: 1.5rem;
  opacity: 25%;
  background: rgb(36, 35, 44);
  outline: none;
  border: none;
  width: 100%;
}
.output-div .copied {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.output-div .copied #copied-text {
  text-transform: uppercase;
  color: rgb(164, 255, 175);
  font-size: 1.125rem;
  opacity: 0;
  transition: 0.25s opacity ease-in;
}
.output-div img {
  width: 17.5px;
  height: 20px;
}
.output-div img:hover {
  cursor: pointer;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(209deg) brightness(102%) contrast(101%);
}

.form {
  background: rgb(36, 35, 44);
  font-size: 1rem;
  padding: 1rem;
}

.char-slider {
  margin-top: 0.438rem;
}
.char-slider p {
  margin: 0 0 0.5rem;
  display: flex;
  justify-content: space-between;
}
.char-slider #password-length {
  font-size: 1.5rem;
  color: rgb(164, 255, 175);
}
.char-slider input[type=range] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  cursor: pointer;
  outline: none;
  height: 0.5rem;
  background: rgb(24, 23, 31);
  /* // styles for the track - browsers like chrome, safari etc
  &::-webkit-slider-runnable-track {
      height: .5rem;
      background: c.$veryDarkGrey;
  } */
  /*  // styles for the track for mozilla

   &::-moz-range-track {
       height: .5rem;
       background: c.$veryDarkGrey;
   } */
}
.char-slider input[type=range]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  /* custom styles */
  height: 28px;
  width: 28px;
  background: rgb(230, 229, 234);
  border-radius: 50%;
  /* // slider progress trick
  box-shadow: -407px 0 0 400px c.$neonGreen; */
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.char-slider input[type=range]::-webkit-slider-thumb:hover {
  outline: 1px solid rgb(164, 255, 175);
  background: rgb(24, 23, 31);
}
.char-slider input[type=range]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  background: rgb(230, 229, 234);
  border-radius: 50%;
  /* // slider progress trick
  box-shadow: -407px 0 0 400px c.$neonGreen; */
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.char-slider input[type=range]::-moz-range-thumb:hover {
  outline: 1px solid rgb(164, 255, 175);
  background: rgb(24, 23, 31);
}
.char-slider input[type=range]:active::-webkit-slider-thumb, .char-slider input[type=range]:focus::-webkit-slider-thumb {
  outline: 1px solid rgb(164, 255, 175);
  background: rgb(24, 23, 31);
}
.char-slider input[type=range]:active::-moz-range-thumb, .char-slider input[type=range]:focus::-moz-range-thumb {
  outline: 1px solid rgb(164, 255, 175);
  background: rgb(24, 23, 31);
}

.options {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  margin-top: 2.5rem;
}
.options .form-control {
  display: grid;
  grid-template-columns: 1rem auto;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.options label:hover {
  cursor: pointer;
}
.options input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  margin: 0;
  background: none;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgb(230, 229, 234);
  display: grid;
  place-content: center;
}
.options input[type=checkbox]:hover {
  border: 2px solid rgb(164, 255, 175);
  cursor: pointer;
  transition: 0.25s ease-in;
}
.options input[type=checkbox]:checked {
  border: none;
  background: rgb(164, 255, 175);
  transition: 0.25s ease-in-out;
}
.options input[type=checkbox]::before {
  content: "";
  width: 11.39px;
  height: 8px;
  background: url("../../assets/images/icon-check.svg") no-repeat center center;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.options input[type=checkbox]:checked::before {
  opacity: 1;
}

.strength-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  background: rgb(24, 23, 31);
  color: rgb(128, 124, 146);
  text-transform: uppercase;
  font-size: 1.125rem;
  padding: 0.75rem 1.105rem;
}
.strength-div #level {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgb(230, 229, 234);
  transition: 0.5s ease-in;
}
.strength-div .strength-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.strength-div .strength-indicator span.strength-bar {
  width: 10px;
  height: 28px;
  border: 2px solid rgb(230, 229, 234);
  box-sizing: border-box;
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
}

button.submit {
  margin-top: 1.2rem;
  padding: 1.185rem 0;
  background: rgb(164, 255, 175);
  box-sizing: border-box;
  width: 100%;
  text-transform: uppercase;
  color: rgb(36, 35, 44);
  box-sizing: border-box;
  outline: none;
  border: none;
}
button.submit:hover {
  cursor: pointer;
  background: none;
  border: 1px solid rgb(164, 255, 175);
  color: rgb(164, 255, 175);
  transition: 0.25s ease-in;
}
button.submit:hover img {
  filter: brightness(0) saturate(100%) invert(97%) sepia(86%) saturate(682%) hue-rotate(53deg) brightness(106%) contrast(101%);
}

@media screen and (min-width: 768px) {
  body {
    align-items: baseline;
    padding: 8.5rem 7.2rem;
  }
  h1 {
    font-size: 1.5rem;
    margin: 0 0 1.938rem;
  }
  .output-div {
    margin-bottom: 1.5rem;
    padding: 1.535rem 1rem;
  }
  .output-div img {
    width: 21px;
    height: 24px;
  }
  .form {
    font-size: 1.125rem;
    padding: 1.8rem 1rem;
  }
  .char-slider #password-length {
    font-size: 2rem;
  }
  .options {
    margin-top: 3rem;
    gap: 1.25rem;
  }
  .strength-div {
    margin-top: 2.2rem;
    padding: 1.375rem 1.905rem;
  }
  .strength-div #level {
    font-size: 1.5rem;
  }
  button.submit {
    margin-top: 2.2rem;
  }
}
@media screen and (min-width: 1440px) {
  body {
    padding: 8.5rem 28.1rem;
    height: auto;
  }
}
.active {
  color: rgb(230, 229, 234) !important;
  opacity: 100% !important;
}

.strength-very-weak {
  background: rgb(246, 74, 74);
  border: rgb(246, 74, 74) !important;
}

.strength-weak {
  background: rgb(251, 124, 88);
  border: rgb(251, 124, 88) !important;
}

.strength-medium {
  background-color: rgb(248, 205, 101);
  border: rgb(248, 205, 101) !important;
}

.strength-strong {
  background-color: rgb(164, 255, 175);
  border-color: rgb(164, 255, 175) !important;
}/*# sourceMappingURL=main.css.map */