.blue-register-card {
    --card-bg: #258BFF;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}

.blue-register-card.white-card {
    --card-bg: #eff6ff;
}

.blue-register-card.white-card .blue-register-card__content {
    color: #474766;
}

.blue-register-card.white-card .blue-register-card__text {
    color: #8787AB;
}

.blue-register-card.white-card .blue-register-card__bg {
    display: none;
}

.blue-register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    z-index: -5;
}

.blue-register-card__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 56px 56px 64px;
}

.blue-register-card__bg {
    --offset: 200px;
    position: absolute;
    top: -50%;
    left: -50%;
    transform: translate(calc(50% - var(--offset)), calc(50% - var(--offset)));
    width: calc(100% + var(--offset));
    height: calc(100% + var(--offset));
    pointer-events: none;
    z-index: -3;
}

.blue-register-card__bg::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-image: radial-gradient(rgba(255, 255, 255, 0.35) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.8;
    pointer-events: none;
    z-index: -5;
    position: relative;
}

.blue-register-card__bg::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: radial-gradient(circle,rgba(37, 139, 255, 0) 0%, rgba(37, 139, 255, 1) 100%, rgba(37, 139, 255, 0) 100%);
    z-index: -3;
}

.blue-register-card__inner::before {
    right: -120px;
    top: -160px;
}

.blue-register-card__inner::after {
    left: -140px;
    bottom: -220px;
    opacity: 0.6;
}

.blue-register-card__content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    color: #fff;
}

.blue-register-card__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 24px;
}

.blue-register-card__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.blue-register-card__button {
    width: fit-content;
}

.blue-register-card__button.cta-link-btn.white.with-arrow {
    --arrow-width: 18px
}

.blue-register-card__media {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.blue-register-card__picture {
    width: 100%;
    max-width: 520px;
}

.blue-register-card__image {
    width: 100%;
    height: auto;
    display: block;
}

.blue-register-card__tag {
    padding: 6px 14px;
    background-color: #fff;
    width: fit-content;
    color: #258BFF;
    border-radius: 9999px;
    border: 1px solid #DBEAFE;
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 13px;
    line-height: 150%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

@media screen and (max-width: 1050px) {
    .blue-register-card__inner {
        padding: 40px;
        flex-direction: column;
        align-items: flex-start;
    }

    .blue-register-card__media {
        width: 100%;
        justify-content: center;
    }

    .blue-register-card__picture {
        max-width: 480px;
    }
}

@media screen and (max-width: 700px) {
    .blue-register-card {
        padding: 40px 0;
    }

    .blue-register-card__inner {
        padding: 28px 24px 32px;
        border-radius: 22px;
    }

    .blue-register-card__title {
        font-size: 28px;
        line-height: 34px;
    }

    .blue-register-card__text {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 550px) {
    .content-block-container.blue-register-card__outer {
        padding-left: 0;
        padding-right: 0;
    }

    .blue-register-card {
        border-radius: 0;
        padding: 0;
    }
}
