* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url("./assets/images/matrix.png");
  font-family: monospace;
  font-weight: 600;
}

.overlay {
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  backdrop-filter: blur(0.5px);
}

.heading {
  font-size: 4rem;
  margin-bottom: 6rem;
  margin-top: -8rem;
  color: white;
  font-family: monospace;
}

.text {
  display: flex;
  margin-bottom: 2rem;
}

.description {
  color: white;
  font-size: 1.7rem;
  margin-right: 2rem;
  letter-spacing: 2px;
}

.password-length {
  width: 4rem;
  padding-left: 0.7rem;
  height: 1.9rem;
  border-radius: 10px;
  outline: 1px solid black;
  border: none;
  font-weight: 600;
}

div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.display-password {
  height: 3rem;
  width: 20rem;
  margin-right: 2rem;
  border-radius: 20px;
  outline: 1px solid black;
  border: none;
  padding-left: 2rem;
  font-size: 1.2rem;
  font-family: monospace;
  font-weight: 500;
  cursor: not-allowed;
}

.generator {
  height: 3rem;
  padding: 1rem;
  border-radius: 20px;
  font-family: monospace;
  font-weight: 700;
  font-size: 1rem;
  outline: 1px solid black;
  border: none;
  display: grid;
  place-items: center;
  letter-spacing: 1.5px;
  transition: 0.3s ease;
  cursor: pointer;
}

.generator:hover{
  background-color: rgb(40, 90, 40);
  color: white;
  transform: scale(1.05);
  border: 1px solid white;
  outline: none;
}

.generator:active{
  background-color: black;
  color:white;
  transition: 0.1s ease;
}

.conditions{
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  justify-content: center;
  align-items: center;
}

.conditions>p{
  margin: 1rem;
  color: black;
  border: 1px solid white;
  padding: 1rem;
  border-radius: 1rem;
  background-color: rgb(255, 255, 255);
  font-size: 1.1rem;
}

p>input{
  margin-left:1rem ;
  border-radius: 50%;
}

p>input:not(:checked) {
  border-radius: 0;
  background-color: #f0f0f0;
  border: 2px solid #ccc;
  transition: all 0.3s ease;
}

input:checked{
  border-radius: 50%;
  box-shadow: 0 0 10px black;
  transition: all 0.3s ease;
  transform: scale(1.3);
}

@media screen and (max-width:375px) {
  div{
    flex-direction: column;
  }
}