.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: calc(100% - var(--nav-height));
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    height: 100%;
}

.top-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.text {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    color: var(--text-color);
}

.subtext {
    font-size: 1.85rem;
    font-weight: 400;
    color: var(--text-color);
}

.code-container {
    display: flex;
    justify-content: space-between;
    gap: 3.5rem;
}

.code-container span {
    position: relative;
    width: 4rem;
    height: 4rem;
    text-align: center;
    line-height: 1.5rem;
    font-size: 4.5rem;
    font-weight: 500;
}

.code-container span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 10px;
    box-shadow: 5px 3px 15px rgba(0, 0, 0, 0.19);
}

.error-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.info-text {
    font-size: 1.5rem;
    font-weight: 400;
}

.error {
    color: var(--danger-color);
}