.color-green {
  color: green;
}

.color-red {
  color: red;
}

.password-indicator-icon {
  width: 16px;
  margin-right: 4px;

  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.password-indicator-tooltip {
  position: absolute;
  bottom: -150px;
  width: 100%;
  z-index: 10;

  color: white;
  background-color: rgb(41, 41, 41);
  opacity: 95%;

  margin-top: 12px;

  padding-top: 15px;
  padding: 12px;

  border-radius: 15px;
}

.password-indicator-tooltip::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 15%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent rgb(41, 41, 41) transparent;
}

#password-match-tooltip {
  bottom: -50px !important;
}

.progress-bar-container {
  display: block;
}

.progress-bar {
  font-size: 12px;
  width: 100%;
  height: 20px;
  display: flex;
  border: 1px solid #ccc;
  overflow: hidden;
  background-color: #ccc;

  border-radius: 0.4rem;
}

.segment {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: white;
}

.red {
  background-color: red;
}

.orange {
  background-color: orange;
}

.green {
  background-color: green;
}
