.reminder-section {
    text-align: left;
    padding: 0;
}

.left-side {
    padding: 0 64px;
}

.logo-holder {
    width: 100px;
    height: 32px;
    margin-top: 20px;
    margin-bottom: 56.41px;
}

.reminder-title {
    color: #3E3A39;
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 28px;
    width: 475.984px;
}

.reminder-list {
    padding-left: 15px;
    margin-bottom: 40px;
    color: #717171;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.btn-continue {
    padding: 12px 18px;
    border-radius: 24px;
    border: 1px solid transparent;
    background: radial-gradient(ellipse 143.59% 143.59% at 52.63% 123.08%, white 0%, #50C3CB 30%, #00A4CA 84%) padding-box, radial-gradient(circle, #50C3CB 0%, white 40%, #00A4CA 100%) border-box;
    color: #FFF;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    gap: 4px;
    line-height: 1;
}

.btn-continue:hover {
    border: 1px solid transparent;
    background: radial-gradient(ellipse 143.59% 143.59% at 52.63% 123.08%, white 0%, #0A8091 36%, #00A4CA 100%) padding-box, radial-gradient(circle, #50C3CB 0%, white 20%, #00A4CA 100%) border-box;
}

.right-side {
    position: relative;
    padding: 0;
    height: 100vh;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.character-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    max-height: 80vh;
}

.back-link {
    color: #717171;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    gap: 4px;
    margin-bottom: 30.24px;
    padding: 6px 18px;
    width: fit-content;
}

.back-link:hover {
    color: #77CCD1;
}

.back-link:hover i {
    color: #717171;
}

.btn-continue i, .back-link i {
    font-size: 12px;
    padding: 3px;
}

/* responsive */
@media (max-width: 480px) {
    .reminder-section,
    .left-side {
        padding: 0 16px;
    }

    .logo-holder {
        margin-left: 8px;
        margin-top: 40px;
        margin-bottom: 16px;
    }

    .reminder-title {
        margin-top: 40px;
        font-size: 24px;
        line-height: normal;
        width: 100%;
    }

    .reminder-list {
        padding-left: 23px;
        font-size: 18px;
        letter-spacing: 0.36px;
    }

    .btn-continue {
        margin-bottom: 40px;
    }
    
    .back-link {
        margin-bottom: 10px;
        justify-content: end;
        width: 100%;
    }

    .right-side {
        height: 100%;
    }

    .character-image {
        bottom: -50px;
        max-height: 60vh;
    }
}