/* General styles */
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
  width: 300px;
}

h1 {
  margin-bottom: 20px;
  color: #333;
}

input[type="password"] {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Strength bar container */
.strength-container {
  width: 100%;
  height: 10px;
  background: #eee;
  border-radius: 6px;
  margin-bottom: 10px;
}

#strength-bar {
  height: 100%;
  width: 0%;
  border-radius: 6px;
  transition: width 0.3s ease;
}

/* Strength text */
#strength-text {
  font-weight: bold;
  color: #333;
}