main {
    align-items: center;
}
main > * {
    max-width: 580px;
}

.error-message {
    color: var(--color-accent-1);
    margin-bottom: 1rem;
    text-align: center;
}
.success-message {
    color: #37b24d;
    margin-bottom: 1rem;
    text-align: center;
}

.form > label > span:first-child {
    display: none;
}
.form > label > input[type="text"],
.form > label > input[type="password"],
.form > label > input[type="email"]{
    height: 40px;
    background-color: transparent;
}

.form input[type="text"]::placeholder,
.form input[type="password"]::placeholder,
.form input[type="email"]::placeholder{
    font-size: 12px;
}

/* 자동완성 배경색 수정 */
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--color-base-9);
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 0 1000px transparent !important;
}

.link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}
.link > li > a {
    color: var(--color-base-6);
}
.link > li {
    position: relative;
    padding: 0 20px;
    border-right: none;
}

.link > li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: var(--color-base-4);
}
.link > li:not(:first-child)::before {
    display: none;
}
