body {
  background-color: rgb(0, 0, 0);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pasward-generater-card {
  width: 500px;
  height: 550px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0px 1px 3px rgb(255, 255, 255);
  overflow : hidden ;

}

h1 {
  text-align: center;
  color: black;
  margin-top: 30px;
}

.conditon-checker {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 50px;
  font-size: 22px;
}
#range {
  font-size: 24px;
  font-weight: 900;
}
#range > input {
  display: block;
  width: 350px;
  margin-bottom: 10px;
  margin-top: 15px;
  color: black !important;
}

.button-container{
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
#generate-btn {
  background-color: black;
  color: white;
  padding: 10px;
  font-size: 20px;
  font-weight: 900;
  width: 250px;
  border-radius: 10px;
  box-shadow: none;
  border: none;
}
#generate-btn:hover {
  cursor: pointer;
}

/* Works in most modern browsers */
input[type="range"] {
  accent-color: #000000; /*Change this to any color */
}
/* Change checkbox tick/checkmark color */
input[type="checkbox"] {
  accent-color: black; /* You can set this to red, green, etc. */
}

.user-pasward {
 margin-top: 10px;
 font-size: 25px;
 font-weight: 900;
 background-color: rgb(0, 0, 0);
 color: white;
 padding: 20px 10px;
 border-radius: 6px;
 text-align: center;
 word-wrap: break-word;

}

.colour{
  color: red;
}

