body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;
}

header {
    display: flex;
    height: 128px;
    padding: 24px 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 400px;
}

.mokpyo-logo {
    width: auto;
    height: 100%;
    flex-shrink: 0;
    aspect-ratio: 33/8;
}

main {
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex: 1 0 0;

    width: 100%;
    max-width: 400px;
}

div.page-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.page-header > h1.page-title {
    color: var(--main-text);
    text-align: center;
    font-family: Geist;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

div.page-header > span.page-desc {
    color: var(--main-text);
    text-align: center;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

div.steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 400px;
}

div.steps > div.step {
    display: none;
}

div.steps > div.step.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 12px;

    width: 100%;
    max-width: 400px;
}

footer {
    display: flex;
    height: 106px;
    padding: 24px 96px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;

    width: 100%;
    max-width: 400px;
}

.coodlab-logo {
    width: auto;
    height: 100%;
    flex: 1 0 0;
    aspect-ratio: 93.79/20.00;
}

footer > p.copyright {
    color: var(--overlay);
    text-align: center;
    font-family: Geist;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

footer > p.copyright > a {
    color: var(--overlay);
    text-align: center;
    font-family: Geist;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    text-decoration: underline;
    cursor: pointer;
}