.cmp-status__container {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 32px 16px 48px 16px;;
    gap: 40px;
}

.cmp-status__information {
    display: flex;
    flex-direction: column;
    gap: 16px;

    text-align: center;
}

.cmp-status__image {
    width: 140px;
    height: 140px; 
    display: flex;
    align-self: center;
}

.cmp-status__title {
    color: #2c3059;

    font-family: "InterBold";
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0px;
}

.cmp-status__desc {
    color: #6a6d87;

    font-family: "Inter";
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
}

.cmp-status__desc span, .cmp-status__desc b {
    color: #684b9b;
    font-family: "InterBold";
}

.cmp-status__button {
    padding: 12px 48px;

    color: #fff;
    font-family: "InterBold";
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0px;

    border-radius: 30px;
    background: linear-gradient(98.72deg, #684B9B -27.72%, #381B6B 127.08%);

}

@media (min-width: 768px) {
    .cmp-status__container {
        margin: auto;
        max-width: 747px;
        padding: 56px 0px 80px 0px;
    }

    .cmp-status__information {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
}