/* for future styling */

.label__login {
  color: #f2b10d;
}

.form-check {
  position: relative;
  padding: 10px;
}

.card__button-wrapper-login {
  display: flex;
  justify-content:space-evenly;
  align-items:baseline;
}

input[type="checkbox"] {
  visibility: hidden;
}

.form-check-input + label:before {
  content: '';
  display: block;
  width: 27px;
  height: 20px;
  border: 1px solid rgb(242, 177, 13);
  position: absolute;
  left: 6px;
  top: 6px;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

.form-check-input:checked + label:before {
  width: 7px;
  top: 4px;
  left: 18px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
