.checkbox-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0rem;
  gap: 0.438rem;

  width: auto;
  height: 1.094rem;

  flex: none;
  order: 1;
  flex-grow: 0;
}

.checkbox-label {
  position: relative;
  left: -1.5rem;

  width: auto;
  height: 1.063rem;

  font-weight: 400;
  font-size: 0.9rem;
  line-height: 130%;

  color: #334155;

  cursor: pointer;

  flex: none;
  order: 1;
  flex-grow: 0;
}

.checkbox-label a {
  color: #9CA3AF;
  text-decoration: none;
}

.checkbox-label a:hover {
  color: #10B981;
}

#chkRemember {
  flex: none;
  order: 0;
  flex-grow: 0;

  cursor: pointer;

  width: 1.094rem;
  height: 1.094rem;

  opacity: 0;
  z-index: 1;
}

.checkbox-input {
  position: relative;
  left: -1.5rem;

  flex: none;
  order: 0;
  flex-grow: 0;

  box-sizing: border-box;

  width: 1.094rem;
  height: 1.094rem;

  background: #FFFFFF;
  border: 0.06rem solid #CBD5E1;
  outline: 0.188rem solid rgba(0, 0, 0, 0);
  border-radius: 0.3rem;

  transition: 0.6s;
  z-index: 0;
}

#chkRemember:hover ~ .checkbox-input {
  outline: 0.188rem solid #CBD5E1;
  border: 0.06rem solid #94A3B8;
}

.checkbox-container input:checked ~ .checkbox-input {
  border: 0.06rem solid #10B981;
  background: #10B981;
}

#chkRemember:checked:hover ~ .checkbox-input {
  outline: 0.188rem solid #ECFDF5;
}

.checkbox-input::after {
  content: "✔";
  color: white;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  display: none;
}

.checkbox-container input:checked ~ .checkbox-input::after {
  display: block;
}

.checkboxes-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0rem;
  gap: 0.5rem;

  width: auto;
  height: 1.188rem;

  flex: none;
  order: 3;
  align-self: stretch;
  flex-grow: 0;
}