 
     #content{
         overflow-x: scroll !important;
         overflow-y: scroll !important;
     }  
     
     
     * {
  box-sizing: border-box;
}

.password-container {
  max-width: 400px;
  margin: 20px auto;
  padding: 16px;
  font-family: Arial, sans-serif;
}

input {
  width: 100%;
  padding: 14px;
  font-size: 16px; /* important for mobile (prevents zoom) */
  border: 1px solid #ccc;
  border-radius: 6px;
}

.progress {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 4px;
  margin-top: 10px;
  overflow: hidden;
}

#strength-bar {
  height: 100%;
  width: 0%;
  background: red;
  transition: width 0.3s ease, background 0.3s ease;
}

#strength-text {
  margin-top: 8px;
  font-weight: bold;
  font-size: 14px;
}

/* Colors */
.weak {
  color: red;
}

.medium {
  color: orange;
}

.strong {
  color: green;
}

       

     