* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

#refresh-icon {
  transition: transform 1s ease-in-out;
}

#main-content {
  background-color: #f26e0d;
  margin: auto auto;
  height: 80vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

#main-content .content {
  background-color: white;
  border: #fff 1px solid;
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 40vw;
  height: 50vh;
  padding: 50px 80px;
  text-align: center;
}

#main-content .content #password-content {
  width: 100%;
  overflow: hidden;
}

#main-content .content #password-field {
  background-color: #f7f7f7;
  border: #e2e2e2 1px solid;
  border-radius: 5px;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0 10px 0 0;
  margin-bottom: 10px;
}

#main-content .content #password-field input {
  appearance: none;
  outline: none;
  width: 100%;
  border: none;
  background-color: #f3f3f3;
  font-weight: 500;
  color: black;
  font-size: 20px;
  padding: 10px 10px;
}

#main-content .content #strength-bar {
  border-radius: 5px;
  height: 8px;
  transition: all ease-in-out 500ms;
}

#main-content .content .strength-bar-bg {
  overflow: hidden;
  border-radius: 999px;
  background-color: #d9d9d9;
}

#main-content .content #password-field input:focus {
  outline: none;
}

#main-content .content #password-field button {
  background: none;
  outline: none;
  border: none;
  display: block;
  width: 32px;
  height: 32px;
  transition: scale ease-in-out 200ms;
  cursor: pointer;
}

#copy-btn {
  transition: scale ease-in-out 200ms;
}

#copy-btn:hover {
  scale: 1.1;
}

#main-content .content #password-field button:hover {
  scale: 1.1;
}

#main-content .content label {
  text-align: start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* #main-content .content label p {
  float: right;
} */

#main-content .content #copy-btn {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 30px;
  outline: none;
  border: none;
  border-radius: 5px;
  background-color: #f26e0d;
  color: white;
}

#main-content .inputs > * {
  display: block;
  margin: auto auto;
  margin: 0px 0 10px 0;
}

#main-content .inputs {
  display: flex;
  gap: 15px;
  flex-direction: column;
  width: 100%;
  text-align: start;
  justify-content: space-between;
}

#main-content .inputs ul {
  list-style: none;
}

#main-content .inputs ul li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#main-content .inputs .inputs-content {
  display: flex;
  justify-content: space-between;
}

#main-content .inputs #password-length {
  width: 100%;
}

.block > * {
  display: block;
}

.block > :first-child {
  margin-bottom: 10px;
}

.block {
  width: 75%;
}

.block #password-length {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  height: 10px;
  background: #f0f0f0;
  border-radius: 5px;
}

.block #password-length::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: #f26e0d;
  border-radius: 100px;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

#main-content .inputs .checkboxes {
  display: flex;
  flex-direction: column;
}

/* #main-content .inputs .checkboxes > * {
  display: block; 
} */
/* #main-content .inputs .checkboxes {
  display: flex;
  flex-direction: column;
} */

/* #main-content .inputs .checkboxes > * {
  display: block; 
} */
