*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
:root{
  --primary: #ffba0a;
  --primary-light: #ffde89;
  --primary-dark: #e6a500;
  --extra-light: #fae6b3;
}

html{
  font-size: 62.5%;
}
body{
  font-size: 1.6rem;
}
.container{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box{
  height: 37rem;
  width: 40rem;
  background: linear-gradient(178deg, var(--primary), var(--extra-light) 108%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  
}
.fa-lock{
  color: red;
  margin: 0 .5rem;
}
.upper{
  flex-grow: 1;
  padding: 2rem 3rem;
}
.upper h1{
  text-align: center;
  margin-bottom: 1rem;
}
#genBtn{
  background-color: var(--primary-light);
  border: none;
  padding: 1rem 0;
  font-size: 1.8rem;
  transition: .1s ease-in;
}
#genBtn:hover{
  cursor: pointer;
}
#genBtn:active{
background-color: var(--primary-dark);
color: white;
transition: .1s ease-in;
}
#genBtn:hover{
  background-color: var(--primary);
}
#password{
  background-color: var(--extra-light);
  height: 4rem;
  width: 100%;
  margin-bottom: 2rem;
  color: red;
  font-weight: 600;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: copy;

}
.range-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.checkboxes{
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;

}
.form-control{
  display: flex;
  justify-content: space-between;
}
.form-control label{
  font-size: 1.7rem;
  letter-spacing: 0.3px;
}
/* for range slider */
input[type = "range"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 0.5rem;
  outline: none;
  cursor: pointer;
}
input[type = "range"]::-webkit-slider-thumb{
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 2rem;
  width: 0.8rem;
  background-color: red;
  border: 1px solid black;

}
input[type = 'checkbox']{
  accent-color: red;
}

