/* Basic CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #f0f0f0;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

h1 {
  color: #1e90ff;
  margin-bottom: 20px;
}

.strength {
  margin-bottom: 20px;
}

.strength label {
  margin-right: 10px;
  font-size: 1rem;
}

.password-box {
  margin-bottom: 20px;
}

#password {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
}

.buttons {
  display: flex;
  justify-content: space-between;
}

button {
  background-color: #1e90ff;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #4682b4;
}

.brand {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive Styling */
@media (max-width: 500px) {
  .strength label {
    font-size: 0.9rem;
  }

  #password {
    font-size: 0.9rem;
  }

  button {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .brand {
    font-size: 0.8rem;
  }
}
