/* 회원가입 페이지 전용 layout과 상태 */
.signup {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 0;
}

.signup__title {
    margin: 0 0 80px;
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: -0.2px;
    color: var(--color-black);
    text-align: center;
}

.signup:has(.field--error) {
    padding-bottom: 0;
}

.signup:has(.field--error) .signup__title {
    margin-bottom: 76px;
}

.signup__form {
    width: 384px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.signup__fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.signup__form .btn:disabled {
    cursor: default;
    opacity: 0.7;
}

.signup__error {
    display: none;
    margin: -16px 0 -24px;
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    color: var(--color-error);
    text-align: center;
}

.signup__error.is-visible {
    display: block;
}
