.form-control,
.form-select {
  background-color: #e5e3e3;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  width: 100%;
}
.form-control:focus,
.form-select:focus {
  border: 1px solid #bdbcbc;
  background-color: #e5e3e3;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(153, 153, 153, 0.25);
}

.invalid-feedback {
  display: block;
  color: #dc3545;
  font-weight: 400;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.password-group {
  display: flex;
  align-items: center;
  background-color: #e5e3e3;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.password-group:focus-within {
  border: 1px solid #bdbcbc;
  box-shadow: 0 0 0 2px rgba(153, 153, 153, 0.25);
}
.password-group.invalid {
  border: 1px solid #dc3545;
}
.password-group.invalid:focus-within {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.password-group input[type=password],
.password-group input[type=text] {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
  padding: 0;
  min-width: 0;
}

.password-toggle {
  cursor: pointer;
  color: #6c757d;
  font-size: 1.2rem;
  margin-left: 0.5rem;
}
.password-toggle:hover {
  color: #000;
}

input[type=radio],
input[type=checkbox] {
  accent-color: #212529;
  width: 16px;
  height: 16px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}/*# sourceMappingURL=input.css.map */