* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #7fb5c7;
}

.container {
  width: 500px;
  background-color: rgb(255, 255, 255);
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
}

.container h1 {
  font-weight: 700;
  font-size: 1.3rem;
  color: lightslategray;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #c0c0c0;
  text-align: center;

}

.wrapper {
  margin: 1.5rem;
}

.input-box {
  position: relative;
}

.input {
  display: inline-block;
  width: 100%;
  height: 55px;
  color: #000;
  background: none;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #aaa;
  padding: 0.8rem 2.5rem 1rem 1rem;
  font-size: 1.2rem;
  font-weight: 500;
}


.material-symbols-outlined {
  position: absolute;
  right: 15px;
  cursor: pointer;
  line-height: 55px;
  color: #707070;
}
.material-symbols-outlined:hover {
  color: #42a048;
}

.greenCopy{
  color: #42a048;
}

.pass-indicator {
  width: 100%;
  height: 5px;
  position: relative;
  margin-top: 1rem;
  border-radius: 25px;
}

.pass-indicator::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 50%;
}

.weak::before {
  width: 20%;
  background: red;
  transition: .6s;
}

.mid::before {
  width: 50%;
  background: rgba(212, 212, 34, 0.658) ;
  transition: .6s;
}

.midStrong::before {
  width: 75%;
  background: lightgreen;
  transition: .6s;
}
.strong::before {
  width: 100%;
  background: green;
  transition: .6s;
}

.pass-length {
  margin: 1.5rem 0;
}

.details {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 500;
  color: lightslategray
}



.scroll[type="range"] {
  margin: 0; 
  padding: 0;
  /* accent-color: red; */
}

.pass-length input {
  width: 100%;
  height: 5px;
}


.pass-settings {
  font-size: 1.2rem;
  font-weight: 500;
  color: lightslategray
}

.pass-settings .options {
  display: flex;
  list-style-type: none;
  flex-wrap: wrap;
  margin-top: 1rem;

}

.options .option {
  display: flex;
  align-items:center;
  margin-bottom: 1rem;
  width: calc(100%/2);
}

.option:first-child {
  /* pointer-events: none; */
}
.option:first-child input {
  opacity: .7;
}

.option input {
  height: 16px;
  width: 16px;
  cursor: pointer;
}

.lowercase {
  accent-color: brown;
}
.uppercase {
  accent-color: #000;
}
.numbers {
  accent-color: rgb(66, 66, 250);
}
.symbols {
  accent-color: orange;
}

.option label {
  font-size: 1rem;
  cursor: pointer;
  color: #707070;
  padding-left: .5rem;
}

.generate-btn {
  width: 100%;
  font-size: 1.2rem;
  font-weight: 500;
  color: #e2e2e2;
  background: #43a047;
  padding: 1rem 0;
  border-radius: 6px;
  text-transform: uppercase;
  margin: 1rem 0;
  border: none;
}

.generate-btn:hover {
  opacity: 0.8;
}

@media (max-width: 430px) {
  .container {
    width: 380px;
  }

  .input {
    font-size: 1rem;
    font-weight: 500;
    padding: 1.2rem 2.5rem 1rem 1rem;
  }

  .option label {
    font-size: 0.9rem;
    cursor: pointer;
    color: #707070;
    padding-left: .4rem;
  }
}

@media (max-width: 375px) {
  .container {
    width: 350px;
  }

  .input {
    font-size: 1rem;
    font-weight: 500;
    padding: 1.2rem 2.5rem 1rem 1rem;
  }
}