*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Inter", sans-serif;
}

body{
  background:#0f172a; /* dark slate */
  color:#e5e7eb;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
}

.wrapper{
  width:100%;
  display:flex;
  justify-content:center;
}

.container{
  width:360px;
  background:#111827;
  padding:22px;
  border-radius:14px;
  border:1px solid #1f2933;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
}

h1{
  font-size:20px;
  font-weight:600;
  text-align:center;
  margin-bottom:18px;
}

/* Password Display */
.display{
  display:flex;
  gap:8px;
  margin-bottom:16px;
}

.display input{
  flex:1;
  padding:10px;
  border-radius:8px;
  border:1px solid #1f2933;
  background:#020617;
  color:#e5e7eb;
  outline:none;
}

.display button{
  background:#2563eb;
  border:none;
  padding:8px 12px;
  border-radius:8px;
  cursor:pointer;
  color:white;
}

.lengthBox p{
  font-size:14px;
  margin-bottom:6px;
}

.lengthBox input{
  width:100%;
}

.options{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin:14px 0;
  font-size:14px;
}

.options input{
  accent-color:#2563eb;
}

.strength{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
  margin-bottom:14px;
}

#indicator{
  width:70px;
  height:8px;
  background:#ef4444;
  border-radius:999px;
}

#generateBtn{
  width:100%;
  padding:10px;
  border:none;
  border-radius:10px;
  background:#2563eb;
  color:white;
  font-weight:600;
  cursor:pointer;
  transition:.2s;
}

#generateBtn:hover{
  background:#1d4ed8;
}
