#account_login_form_wrapper , #account_register_form_wrapper , #account_profile_form_wrapper{
    display: none;
}
#account_detection_form .text3 {
    text-align: right;
}
#account_detection_form .text3 input[type="checkbox"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 23px;
    width: 23px;
    outline: none;
    cursor: pointer;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 7px;
    border-radius: 4px;
}

#account_detection_form .text3 .form-check-label {
    display: flex;
    align-items: center;
}
#account_detection_form .text3 {
    text-align: right;
}
#account_detection_form .text3 input[type="checkbox"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 23px;
    width: 23px;
    outline: none;
    cursor: pointer;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 7px;
    border-radius: 4px;
}

#account_detection_form .text3 .form-check-label {
    display: flex;
    align-items: center;
}
#account_detection_form .text3 input[type="checkbox"]::before {
  content: "";
  width: 14px;
  height: 14px;
  transform: scale(0);
  background-color:var(--color2);
  transition: 120ms transform ease-in-out;
  transform-origin: bottom left;
  -webkit-clip-path: polygon(
    14% 44%,
    0 65%,
    50% 100%,
    100% 16%,
    80% 0%,
    43% 62%
  );
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
#account_detection_form .text3 input[type="checkbox"]:checked::before {
  transform: scale(1);
}