.onboarding-body {
    display: flex;
    flex-direction: column;
}

.onboarding-form-wrapper {
    display: flex;
    align-content: center;
    justify-items: center;
}

.onboarding-buttons {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

#kc-passwd-update-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 24px;
}

.onboarding-header-container {
    display: flex;
    height: 80px;
    width: 100%;
    align-content: center;
    justify-content: space-between;
    background-color: var(--base-default);

    box-shadow: 0 0 8px 0 #0D2A5029;
}

.onboarding-header-logo {
    justify-self: flex-start;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
}

.onboarding-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.onboarding-header-content {
    flex-grow: 0.8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Museo Sans Cyrl";
    gap: 32px;

    justify-self: center;

}

.onboarding-title {
    font-family: "Museo Sans Cyrl";
    font-weight: 600;
    font-size: 28px;
}

.onboarding-pin-container {
    display: flex;
    gap: 16px;
}

.onboarding-pin-entry-section {
    display: flex;
    gap: 32px;
    flex-direction: column;

}

.onboarding-pin-digit {
    width: 44px;
    text-align: center;
    font-size: 16px;
    font-family: "Museo Sans Cyrl";
}

.progress-line {
    height: 2px;
    width: 100%;
    display: flex;
}

.progress-filled {
    width: 50%;
    background-color: #8CD656;
    height: 4px;
}

.progress-rest {
    width: 50%;
    background-color: #BFDAFF;
}

.onboarding-pin-eye {
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.cross-line {
    opacity: 0;
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    transition: stroke-dashoffset 0.2s ease, opacity 0.1s ease;
}

svg[data-state="closed"] .cross-line {
    stroke-dashoffset: 0;
    opacity: 1;
}



.onboarding-footer-links {
    height: 84px;
    display: flex;
    gap: 10px;
    margin-left: 48px;
}

.onboarding-footer {
    border-top: 1px solid #C2CFDA;
}

.onboarding-footer-link {
    font-size: 14px;
    display: flex;
    align-items: center;
    color: var(--primary-main-300);
    text-decoration: underline;
}