.register-banner-container {
    width: 100%;
    margin-top: 64px;
    border-radius: 16px;
    padding-right: 40px;
    background: #ECFDF3;
    display: flex;
    position: relative;
    justify-content: space-between;
    background-size: 479px;
    background-position: 0 100%;
    background-image: url(/assets/images/bg-signup.svg);
    background-repeat: no-repeat;
}
.banner-text-contaier {
    display: flex;
    flex-direction: column;
}
.title-ben {
    color: #007E46;
}
.banner-text-contaier h1 {
    color: #101828;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 54px;
    margin-top: 28px;
}
.banner-text-contaier b {
    color: #394C3E;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 34px;
    margin: 5px 0 28px;
}
.banner-text-contaier button {
    gap: 8px;
    width: 189px;
    height: 48px;
    background: #007E46;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 0;
    transition: 0.36s ease;
}
.banner-text-contaier button:hover {
    background: #006C47;
}
.banner-image-contaier {
    height: 100%;
    position: relative;
}
.banner-image-contaier img {
    width: 286px;
    height: 286px;
    position: absolute;
    bottom: 0;
    left: 16px;
    z-index: 2;
}
.bg-container {
    overflow: hidden;
    width: 340px;
    height: 240px;
    position: relative;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

@media (max-width: 1024px) {
    .register-banner-container {
        width: 100%;
        margin-top: 48px;
        padding-right: 32px;
        background-size: 410px;
    }
    .banner-text-contaier h1 {
        font-size: 1.25rem;
        line-height: 34px;
    }
    .banner-text-contaier b {
        font-size: 1rem;
        line-height: 24px;

    }
    .banner-image-contaier img {
        width: 240px;
        height: 240px;
    }
    .bg-container {
        width: 240px;
        height: 206px;
    }
}

@media (max-width: 768px) {
    .register-banner-wrapper {
        height: auto;
    }
    .register-banner-container {
        padding-right: 16px;
        position: relative;
        background-size: 335px;
    }
    .banner-text-contaier h1 {
        font-size: 1rem;
        line-height: 27px;
        margin-top: 16px;
        position: absolute;
        z-index: 2;
    }
    .banner-text-contaier b {
        font-size: .875rem;
        line-height: 20px;
        margin: 50px 0 24px;
    }
    .banner-text-contaier button {
        width: 125px;
        margin-bottom: 16px;
        height: 36px;
        font-size: .75rem;
    }
    .banner-image-contaier img {
        width: 200px;
        height: 200px;
        left: -10px;
    }
    .bg-container {
        width: 140px;
        height: 168px;
    }
}

@media (max-width: 480px) {
    .banner-text-contaier b {
        font-size: .75rem;
    }
    .banner-image-contaier img {
        width: 140px;
        height: 140px;
        left: -5px;
    }
}
