/* Image by <a href="https://pixabay.com/users/arthur_bowers-16973783/?utm_source=link-attribution&amp;utm_medium=referral&amp;utm_campaign=image&amp;utm_content=5400442">Arthur Bowers</a> from <a href="https://pixabay.com/?utm_source=link-attribution&amp;utm_medium=referral&amp;utm_campaign=image&amp;utm_content=5400442">Pixabay</a> */
/* RESETS OUR DEFAULT STYLE TO "0" */
* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}

/* IMPORTS CUSTOM FONT */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap");

/* APP STARTS HERE */
body {
  font-family: "Roboto", sans-serif;
}

.myApp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background-color: rgba(218, 218, 218, 0.979);
}

#btnGenerate {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.logoTop {
  text-align: center;
  background-color: rgb(255, 255, 255);
  border-radius: 14px;
  margin: 15px;
  box-shadow: 0 9px 8px 0 rgba(145, 145, 145, 0.39),
    0 6px 60px 0 rgba(0, 0, 0, 0.061);
}

.headerText {
  display: flex;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  width: 650px;
  border-radius: 14px;
  margin: 20px 0px 40px 12px;
  letter-spacing: 14px;
  align-items: center;
}

.headerText h3 {
  background-color: rgb(255, 255, 255);
}

.containerOne {
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 9px 8px 0 rgba(0, 0, 0, 0.048),
    0 6px 20px 0 rgba(0, 0, 0, 0.103);
  border-radius: 15px;
  padding: 20px;
  width: 680px;
  height: 250px;
  margin: auto;
}

/* bottom section */
.containerTwo {
  padding: 30px;
  margin-bottom: 20px;
}

/* toggle button size */
.charLength,
.lowerCase,
.upperCase,
.symbolToggle {
  font-size: 24px;
  background-color: #cecece1c;
  border-radius: 40px;
}

.containerImg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column-reverse;
  width: 650px;
  padding-bottom: 30px;
  margin-bottom: 24px;
}

.form-switch .form-check-input:checked {
  background-color: #51ff00;
}

.form-switch .form-check-input:disabled {
  background-color: #b3b3b352;
}

.form-switch .form-check-input:active {
  background-color: #2cbd08ef;
}

#passwordBox {
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 10px;
  width: 450px;
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.089),
    0 6px 20px 0 rgba(0, 0, 0, 0.109);
}

p {
  color: rgba(83, 83, 83, 0.87);
}

p small {
  font-size: 12px;
}

p {
  font-size: 18px;
}

h6 {
  font-size: 12px;
  color: rgba(151, 151, 151, 0.87);
}

.muted,
hr {
  color: rgba(148, 148, 148, 0.788);
}

.bgImg {
  height: 110px;
  padding: 0px 0px 10px 10px;
}

/* key-icon */
#appIcon {
  font-size: 30px;
  padding-left: 40px;
  color: #19d858;
}


/* //SLIDER// */
.slidecontainer {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
}

#charLengText {
  text-align: center;
  font-size: 10px;
  letter-spacing: 2px;
  color: #5f5f5f;
}

#sliderOutValue {
  font-size: 25px;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  padding-bottom: 5px;
  background: #5a5a5a;
  outline: none;
  opacity: 0.7;
  border-radius: 20px;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  padding: 20px;
  width: 150px;
  height: 20px;
  background: #ffffff;
  cursor: pointer;
  border-radius: 40px;
  box-shadow: 0 9px 8px 0 rgba(0, 0, 0, 0.048),
  0 6px 20px 0 rgba(0, 0, 0, 0.103);
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #04aa6d;
  cursor: pointer;
}

@media (max-width: 700px) {
  .containerOne,
  .headerText,
  .logoTop {
    flex-direction: column;
    width: 340px;
  }

  .myApp {
    flex-flow: column;
    width: 300px;
    height: 100vh;
    padding: 2px;
    background-color: rgb(255, 255, 255);
  }

  #appIcon {
    font-size: 50px;
    padding-left: 40px;
    color: #19d858;
  }

  #logoTEXT {
    font-size: smaller;
    color: #204659;
    padding: 5px;
  }

  h3 span {
    letter-spacing: 8px;
  }

  body {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #passwordBox {
    width: 330px;
    margin-right: 10px;
    font-size: 15px;
  }

  .containerImg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column-reverse;
    width: 350px;
    padding-bottom: 20px;
  }

  .containerOne {
    
  }
}
