/* welcome layout */
.welcome-dialogue-frame {
    position: relative;
    width: 789px;
    min-height: 403px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    box-shadow: 0 0 14px 3px rgba(0, 0, 0, 0.04);
    margin-top: 200px;
    padding: 48px 56px 56px;
}

.welcome-card {
    justify-content: center;
    gap: 0;
}

.welcome-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}

.welcome-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
    text-align: center;
    margin-bottom: 16px;
}

.welcome-title-line {
    width: 154px;
    height: auto;
    display: block;
}

.welcome-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.welcome-text {
    color: var(--sidebarNoticeGrey);
    font-size: 23px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 32px;
    max-width: 500px;
    font-weight: 400;
}

.welcome-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.welcome-btn-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-width: 260px;
}

.welcome-question-stakeholder,
.welcome-question-member {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 18px;
}

.welcome-question-stakeholder p,
.welcome-question-member p {
    font-size: 23px;
    color: var(--dark);
    margin: 0;
    font-weight: 400;
}

.welcome-button-primary,
.welcome-button-secondary {
    font-weight: 400;
    font-size: 23px;
    padding: 11px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 80ms ease-in-out;
}

.welcome-button-primary {
    border: none;
    background-color: var(--dark);
    color: var(--white);
}

.welcome-button-secondary {
    border: 1px solid var(--dark);
    background-color: var(--white);
    color: var(--dark);
}

.welcome-button-primary:hover {
    background-color: var(--lightBlue);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.welcome-button-secondary:hover {
    border: 1px solid var(--lightBlue);
    color: var(--lightBlue);
    box-shadow: 0 0 0 1px rgba(41, 171, 226), 0 4px 4px rgba(0, 0, 0, 0.25);
}

.content-wrapper-idx>.legal-part.welcome-legal-part {
    margin-top: 84px;
}