.theme-text-blue {
    color: #2563eb;
}

.theme-border-blue {
    border-color: #2563eb;
}

.theme-bg-blue {
    background-color: #2563eb;
}

.theme-hover-bg-blue:hover {
    background-color: #1d4ed8;
}

.smooth-transition {
    transition: all 0.3s ease;
}

/*.input-focus:focus {
    //box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    border: 1px solid #2563eb;
}*/

.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.modal-container {
    animation: fadeIn 0.3s ease-out;
}

/* 胶囊式tab切换样式 */
.tab-container {
    position: relative;
    display: flex;
    background-color: #f3f4f6;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 24px;
}

.tab-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: calc(50% - 8px);
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tab-slider.right {
    transform: translateX(calc(100% + 8px));
}

.tab-button {
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 12px 16px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    transition: color 0.3s ease;
}

.tab-button.active {
    color: #2563eb;
}

.tab-button.inactive {
    color: #6b7280;
}

/* 登录表单滑动样式 */
.login-forms-container {
    position: relative;
    height: 320px;
    overflow: hidden;
    width: 100%;
}

.login-form {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}

#phoneLoginForm {
    transform: translateX(0);
    padding: 2px;
}

#wechatLoginForm {
    transform: translateX(100%);
}

.active-tab {
    transform: translateX(0) !important;
}

.inactive-tab {
    transform: translateX(-100%) !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}