.registration_complete--hidden{
    inset: 0;
}

.registration_complete--hidden{
    display: none;
}

.registration_complete__card{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;

    background: #fff;
    border: 1.5px solid rgba(139, 26, 43, 0.1);
    border-radius: 28px;
    padding: 56px 48px 48px;
    width: fit-content;
    text-align: center;
    box-shadow: 0 32px 80px rgba(139, 26, 43, 0.1), 0 2px 8px rgba(139, 26, 43, 0.05);
    animation: cardIn 0.7s cubic-bezier(0.34, 1.3, 0.64, 1) both;

    & .eyebrown{
        margin: 0;
    }

    & .heavy_button{
        margin: 0;
    }
}

.registration_complete__title{
    font-family: contrast;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text);
    animation: fadeUp 0.5s ease 0.4s both;

    & em{
        font-family: inherit;
        color: var(--cherry);
    }
}

.registration_complete__paragraph{
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    animation: fadeUp 0.5s ease 0.45s both;
    border: 0;
}

.registration_complete__span{
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 300;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardIn {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }    
}