.tab-content {
    animation: fadeIn 0.3s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* SSO 로그인 중일 때 버튼 hover 효과 제거 */
#login-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

#login-submit-btn:disabled:hover {
    background-color: #3b82f6; /* bg-blue-500 유지 */
}