/* 登录表单样式 */

/* 登录标签页 */
.login-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #4a5568;
}

.login-tab {
    flex: 1;
    padding: 12px 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #a0aec0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.login-tab.active {
    color: #14b8a6;
}

.login-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #14b8a6;
}

.login-tab:hover {
    color: #14b8a6;
}

.login-form {
    display: none;
}

.login-form.active {
    display: block;
}
