.auth-subtitle {
    color: #999;
    font-size: 0.88rem;
    margin-top: 0.8rem;
}

.auth-links.is-vertical {
    flex-direction: column !important; /* 強制覆蓋 main.css 的橫向排列 */
    align-items: center !important;    /* 確保垂直置中 */
    gap: 1rem !important;              /* 調整垂直間距 */
}

/* 流程說明區塊 */
.process-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px dashed #e8e8e8;
    align-items: flex-start;
}

.process-step:last-child {
    border-bottom: none;
}

.step-number {
    font-size: 1.4rem;
    font-weight: 900;
    color: #e0e0e0;
    min-width: 2rem;
    line-height: 1.2;
}

.step-title {
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.step-desc {
    font-size: 0.88rem;
    color: #888;
    line-height: 1.6;
}

/* 聯絡資訊區塊 */
.contact-info-box {
    border-left: 3px solid var(--color-accent);
    padding: 1rem 1.5rem;
    background: transparent;
    margin-bottom: 2rem;
}

.contact-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.contact-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.8;
}

.contact-text a {
    color: var(--color-accent);
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}