#registro {
  background-color: transparent;
  background-image: repeating-radial-gradient(
      circle at 0 0,
      transparent 0,
      rgba(244, 244, 242, 0.5) 21px
    ),
    repeating-linear-gradient(
      rgba(224, 224, 223, 0.33),
      rgba(224, 224, 223, 0.33)
    );
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 80%;
  background-color: #fff;
  position: relative;
}

.title {
  font-size: 28px;
  color: var(--primario);
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.title::before,
.title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 0px;
  background-color: var(--primario);
}

.title::before {
  width: 18px;
  height: 18px;
  background-color: var(--primario);
}

.title::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}

.message,
.signin {
  color: rgba(88, 87, 87, 0.822);
  font-size: 14px;
}

.signin {
  text-align: center;
}

.signin a {
  color: var(--sales);
}

.signin a:hover {
  text-decoration: underline var(--sales);
}

.form button {
  align-self: flex-end;
}

.flex-column > label {
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
}

.inputForm {
  border: 1.5px solid #ecedec;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  transition: 0.2s ease-in-out;
}

.input {
  margin-left: 10px;
  border: none;
  width: 85%;
  height: 100%;
}

.input:focus {
  outline: none;
}

.inputForm:focus-within {
  border: 1.5px solid var(--greenCTA);
}

.button-submit {
  margin: 20px 0 10px 0;
  background-color: var(--dark);
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  height: 50px;
  width: 100%;
  cursor: pointer;
  transition: 0.2s;
}

.button-submit:hover {
  background-color: var(--greenCTA);
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Password Strength Meter */
.password-meter {
  display: flex;
  height: 5px;
  margin-top: 10px;
}

.meter-section {
  flex: 1;
  background-color: #ddd;
  transition: 0.2s;
  border-radius: none;
}

.weak {
  background-color: #ff4d4d;
}

.medium {
  background-color: #ffd633;
}

.strong {
  background-color: #00b300;
}

.very-strong {
  background-color: #009900;
}