.login-card.register {
    max-width: 580px;
}

.login-card.register footer {
    margin-top: 16px;
    padding: 10px 0;
}

.login-card.progress {
    max-width: 484px;
}

.register-title {
    font-size: 28px;
    line-height: 40px;
}

.form-stepper {
    display: inline-flex;
    gap: 8px;
    width: auto;
}

.form-stepper .stepper-item {
    height: 8px;
    width: 54.5px;
    border-radius: 16px;
    background: #F3F4F6;
}

.form-stepper .stepper-item.active {
    background: #2463EB;
}

.mt-20px {
    margin-top: 20px
}

.form-section-label {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
}
.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 16px;
}

.option-grid.single {
    grid-template-columns: 1fr;
}

.option-grid .option {
    background: #F3F4F6;
    border-radius: 8px;
    padding: 16px 24px;
    cursor: pointer;
    display: inline-flex;
}
.option-grid .option.active,
.option-grid .option.active:hover{
    background: #DCEBFE!important;
    color:#111827
}

.option-grid .option:hover {
    background: #D1D5DB;
}

.option-grid>.option:last-child:nth-child(odd) {
    grid-column: span 2;
}

.option-grid .option .form-check-input {
    --bs-form-check-bg: "#F3F4F6";
    margin-right: 10px;
}
.option-grid .option .form-check-input:not(:checked) {
    border-color: #4B5563;
}
.option-grid .option .form-check-input:focus {
    box-shadow: none;
}
.create-progress-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.create-progress-wrapper .progress-complete {
    margin: 87px auto;
}

.progress-circle {
    --size: 122px;
    --stroke: 8;
    --color: #2463EB;

    width: var(--size);
    height: var(--size);
    position: relative;
    margin-bottom: 12px;
}

.mask-circle {
    stroke-dashoffset: calc(339.29px * (1 - var(--progress) / 100));
    transition: stroke-dashoffset 0.7s cubic-bezier(.22, 1, .36, 1);
}

.progress-circle .bg {
    fill: none;
    stroke: #F3F4F6;
    stroke-width: var(--stroke);
}

.progress-circle .fg {
    fill: none;
    stroke-width: var(--stroke);
    stroke-linecap: initial;
    stroke-dasharray: 339.29px;
    stroke-dashoffset: calc(339.29px * (1 - var(--progress) / 100));
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 0.7s cubic-bezier(.22, 1, .36, 1);
}

.progress-circle .label {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-weight: 600;
    color: var(--color);
    top: 20px;
}

.progress-item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 32px;
    width: 100%;
}

.progress-item {
    padding: 16px 14px;
    border-radius: 8px;
    transition:
        background-color 350ms ease,
        color 400ms ease,
        transform 350ms ease;
}

.progress-item .form-check-input {
    border-radius: 50%;
    --bs-form-check-bg: "#F3F4F6";
    margin-right: 10px;
}

.progress-item .form-check-input:not(:checked) {
    border-color: #4B5563;
}

.progress-item .form-check-input:disabled {
    opacity: 1 !important;
}
.progress-item.active {
    color: #2463EB;
    font-weight: 600;
    background-color: #DCEBFE;
    transform: scale(1.01);
}
.progress-item-wrapper input[type='checkbox']{ height: 0; width: 0; position: absolute;}
.progress-item-wrapper input[type='checkbox']+label {
    position: relative;
    display: flex;
    align-items: center;
    transition: color 250ms cubic-bezier(.4, .0, .23, 1);
}

.progress-item-wrapper input[type='checkbox']+label>span {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    width: 16px;
    height: 16px;
    background: transparent;
    border: 2px solid #9E9E9E;
    border-radius: 50%;
    cursor: pointer;
    transition: all 250ms cubic-bezier(.4, .0, .23, 1);
}

.progress-item-wrapper input[type='checkbox']+label:hover>span,
.progress-item-wrapper input[type='checkbox']:focus+label>span {
    background: rgba(255, 255, 255, .1);
}
.progress-item-wrapper input[type='checkbox']:checked+label>span {
    border: 8px solid #0d6efd;
    animation: shrink-bounce 200ms cubic-bezier(.4, .0, .23, 1);
}

.progress-item-wrapper input[type='checkbox']:checked+label>span:before {
    content: "";
    position: absolute;
    top: 10.65px;
    left: 3.985px;
    border-right: 2.4px solid transparent;
    border-bottom: 2.4px solid transparent;
    transform: rotate(45deg);
    transform-origin: 0% 100%;
    animation: checkbox-check 125ms 200ms cubic-bezier(.4, .0, .23, 1) forwards;
}

@keyframes shrink-bounce {
    0% {
        transform: scale(1);
    }

    33% {
        transform: scale(.85);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes checkbox-check {
    0% {
        width: 0;
        height: 0;
        border-color: #fff;
        transform: translate3d(0, 0px, 0) rotate(45deg);
    }

    33% {
        width: 5.2px;
        height: 0;
        transform: translate3d(0, -1.65px, 0) rotate(45deg);
    }

    100% {
        width: 5.2px;
        height: 8px;
        border-color: #fff;
        transform: translate3d(0, -8px, 0) rotate(45deg);
    }
}

.login-card.register .btn-primary {
    font-size: 14px;
    padding: 10px 14px;
    height: 40px;
}
.btn-link {
    color: #111827;
    text-decoration: none;
    padding: 0;
}
.btn-link .next-icon {
    display: flex;
    align-items: center;
}
.btn-link:disabled .next-icon > svg path {
    fill: var(--bs-btn-disabled-color)
}
.btn-link:hover .next-icon > svg path {
    fill: var(--bs-btn-hover-color);
}
@media (max-width: 576px) {
    #vue-onboarding {
        flex: 1;
    }
    .questionaire-wrapper {
        display: flex;
        flex-direction: column;
        flex: 1;
        height: 100%;
    }
    .questionaire-wrapper footer {
        margin-top: auto !important;
    }
    .option-grid.option-grid--interests {
        grid-template-columns: 1fr;
    }
    .option-grid.option-grid--interests>.option:last-child:nth-child(odd) {
        grid-column: auto;
    }
}