/*** LOGIN & REGISTER ***/

.card-custom {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: var(--bg-card);
    border: none;
    padding: 12px 30px;
    transition: all 0.3s ease;
    box-shadow: rgba(50, 50, 50, 0.56) 0px 22px 70px 4px;
}

.auth-switch {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
}

.auth-switch .nav-link {
    color: #fff;
    border-radius: 10px;
    padding: 8px 16px;
}

.auth-switch .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.auth-icon {
    background-color: transparent;
    border-radius: 5px;
}



@media (max-width: 768px) {

    .auth-switch {
        margin: 0 var(--container-padding-mobile) 20px;
    }


    .input-group-text {
        padding: 0.375rem 0.75rem;
    }
    
}


/* TOS Checkbox */


  .checkbox-wrapper-43 input[type="checkbox"] {
    display: none;
    visibility: hidden;
  }

  .checkbox-wrapper-43 label {
    display: inline-block;
  }

  .checkbox-wrapper-43 .check {
    cursor: pointer;
    position: relative;
    margin: auto;
    width: 18px;
    height: 18px;
    -webkit-tap-highlight-color: transparent;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-wrapper-43 .check:before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(34,50,84,0.03);
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .checkbox-wrapper-43 .check svg {
    position: relative;
    z-index: 1;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #dcdfe4;
    stroke-width: 1.5;
    transform: translate3d(0, 0, 0);
    transition: all 0.2s ease;
  }
  .checkbox-wrapper-43 .check svg path {
    stroke-dasharray: 60;
    stroke-dashoffset: 0;
  }
  .checkbox-wrapper-43 .check svg polyline {
    stroke-dasharray: 22;
    stroke-dashoffset: 66;
  }
  .checkbox-wrapper-43 .check:hover:before {
    opacity: 1;
  }
  .checkbox-wrapper-43 .check:hover svg {
    stroke: var(--primary-color);
  }
  .checkbox-wrapper-43 input[type="checkbox"]:checked + .check svg {
    stroke: var(--primary-color) !important;
  }
  .checkbox-wrapper-43 input[type="checkbox"]:checked + .check svg path {
    stroke-dashoffset: 60;
    transition: all 0.3s linear;
  }
  .checkbox-wrapper-43 input[type="checkbox"]:checked + .check svg polyline {
    stroke-dashoffset: 42;
    transition: all 0.2s linear;
    transition-delay: 0.15s;
  }



/*** LOGIN & REGISTER END ***/